hotcooler/hotcooler/templates/site/css.html
Lance Edgar e036abd313 Initial commit
as generated from: pcreate -t websauna_app hotcooler

https://websauna.org/docs/tutorials/gettingstarted/tutorial_03.html
2017-04-01 15:17:32 -05:00

20 lines
873 B
HTML

{# Specify CSS section for in the site <head> #}
{# Include Bootstrap CSS from Websauna core package - http://getbootstrap.com/ #}
<link rel="stylesheet" href="{{ 'websauna.system:static/bootstrap.min.css'|static_url }}">
{# Include Font-Awesome icons from CDN - http://fontawesome.io/ #}
<link href="//netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
{# Include some default Websauna styles #}
<link rel="stylesheet" href="{{ 'websauna.system:static/theme.css'|static_url }}">
{# Include hotcooler package theme #}
<link rel="stylesheet" href="{{ 'hotcooler:static/theme.css'|static_url }}">
{# Include CSS for widgets #}
{% if request.on_demand_resource_renderer %}
{% for css_url in request.on_demand_resource_renderer.get_resources("css") %}
<link rel="stylesheet" href="{{ css_url }}"></link>
{% endfor %}
{% endif %}