diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2016-09-02 21:32:54 +0800 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2016-09-02 21:32:54 +0800 |
commit | d041eb65886bda0c4f3e772fdc22c36de350ad03 (patch) | |
tree | ff85eb9af1ec105465c9f06bdef752ddc0f72f9e /source/template.html | |
parent | 2188bbbd7b9fd97e9e2e369ee8b525121501746a (diff) | |
download | my_new_personal_website-d041eb65886bda0c4f3e772fdc22c36de350ad03.tar.xz my_new_personal_website-d041eb65886bda0c4f3e772fdc22c36de350ad03.zip |
Collapse most CSS files into theme.css
Having a whole bunch of CSS files is not good for the performance of the
website.
Diffstat (limited to '')
-rw-r--r-- | source/template.html | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source/template.html b/source/template.html index f7e11237..f6b95b47 100644 --- a/source/template.html +++ b/source/template.html @@ -12,22 +12,14 @@ $endif$ <meta name="msapplication-TileColor" content="#FFFFFF"/> <meta name="msapplication-TileImage" content="/img/favicon-144.png"/> <meta name="viewport" content="width=device-width, initial-scale=1"> - <link href="/css/fonts.css" media="all" rel="stylesheet" type="text/css"/> <link href="/css/normalize.css" media="all" rel="stylesheet" type="text/css"/> <link href="/css/theme.css" media="all" rel="stylesheet" type="text/css"/> - <link href="/css/theme-wide.css" media="only screen and (min-width: 1441px)" rel="stylesheet" type="text/css"/> - <link href="/css/theme-narrow.css" media="only screen and (max-width: 1023px)" rel="stylesheet" type="text/css"/> - <link href="/css/theme-ultranarrow.css" media="only screen and (max-width: 500px)" rel="stylesheet" type="text/css"/> $if(chinese_article)$ <link href="/css/theme-chinese-article.css" rel="stylesheet" type="text/css"/> $endif$ $if(highlighting-css)$ <link href="/css/highlight.css" media="all" rel="stylesheet" type="text/css"/> $endif$ - <link href="/css/print.css" media="print" rel="stylesheet" type="text/css"/> -$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$ |