diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2016-07-24 19:42:15 +0800 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2016-07-24 19:42:15 +0800 |
commit | a6ef3857971f57d1a4a2e3fedf505e11547187b2 (patch) | |
tree | 4fdbf75b23e9e2ac4fd096981fc9d706b33f3aa3 | |
parent | d4e56a6c80197199a5d3936f86e2f46c49f27cbd (diff) | |
download | my_new_personal_website-a6ef3857971f57d1a4a2e3fedf505e11547187b2.tar.xz my_new_personal_website-a6ef3857971f57d1a4a2e3fedf505e11547187b2.zip |
template.html: Allow per-file custom CSS
-rw-r--r-- | source/template.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/template.html b/source/template.html index 5c7895b9..527e8375 100644 --- a/source/template.html +++ b/source/template.html @@ -28,6 +28,9 @@ $endif$ $if(chinese_article)$ <link href="/css/print-chinese-article.css" media="print" rel="stylesheet" type="text/css"/> $endif$ +$if(custom-css)$ + <style type="text/css">$custom-css$</style> +$endif$ </head> <body> <nav class="nav"> |