diff options
author | friendica <info@friendica.com> | 2012-07-21 18:03:22 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-21 18:03:22 -0700 |
commit | c1fe66bec5fb2fe3ce3be2985036c0c8b006d7fd (patch) | |
tree | 33287e3bece27bd1316cb6e87e2d2cd8723875c1 /view/head.tpl | |
parent | f8107be85bf5482c6fc46b9cd4f46ae899ad4771 (diff) | |
download | volse-hubzilla-c1fe66bec5fb2fe3ce3be2985036c0c8b006d7fd.tar.gz volse-hubzilla-c1fe66bec5fb2fe3ce3be2985036c0c8b006d7fd.tar.bz2 volse-hubzilla-c1fe66bec5fb2fe3ce3be2985036c0c8b006d7fd.zip |
breakup css into page layout css, and provide module specific layout css - which should dramatically reduce the size of theme files and reduce load times
Diffstat (limited to 'view/head.tpl')
-rw-r--r-- | view/head.tpl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/view/head.tpl b/view/head.tpl index d7fb1e5b7..7e753c022 100644 --- a/view/head.tpl +++ b/view/head.tpl @@ -1,11 +1,16 @@ <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <base href="$baseurl/" /> <meta name="generator" content="$generator" /> + <link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" /> <link rel="stylesheet" href="$baseurl/library/tiptip/tipTip.css" type="text/css" media="screen" /> <link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" /> +<link rel="stylesheet" type="text/css" href="$baseurl/library/jslider/bin/jquery.slider.min.css" media="screen" /> -<link rel="stylesheet" type="text/css" href="$baseurl/library/jslider/bin/jquery.slider.min.css" /> +<link rel="stylesheet" type="text/css" href="$page_css" media="all" /> +{{ if $mod_css }} +<link rel="stylesheet" type="text/css" href="$mod_css" media="all" /> +{{ endif }} <link rel="stylesheet" type="text/css" href="$stylesheet" media="all" /> <link rel="shortcut icon" href="$baseurl/images/friendica-32.png" /> |