You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
{% macro head(config) %} |
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> |
|
<meta name="robots" content="noodp"/> |
|
|
|
<link rel="stylesheet" href="{{ get_url(path="style.css", trailing_slash=false) | safe }}"> |
|
|
|
{%- if config.extra.accent_color %} |
|
<link rel="stylesheet" href="{{ get_url(path="color/" ~ config.extra.accent_color ~ ".css", trailing_slash=false) | safe }}"> |
|
{% else %} |
|
<link rel="stylesheet" href="{{ get_url(path="color/blue.css", trailing_slash=false) | safe }}"> |
|
{% endif -%} |
|
|
|
{%- if config.extra.background_color %} |
|
{%- if config.extra.accent_color and config.extra.background_color != config.extra.accent_color %} |
|
<link rel="stylesheet" href="{{ get_url(path="color/background_" ~ config.extra.background_color ~ ".css", trailing_slash=false) | safe }}"> |
|
{% endif -%} |
|
{% endif -%} |
|
|
|
{%- if config.extra.use_full_hack_font %} |
|
<link rel="stylesheet" href="{{ get_url(path="font-hack.css", trailing_slash=false) | safe }}"> |
|
{% else %} |
|
<link rel="stylesheet" href="{{ get_url(path="font-hack-subset.css", trailing_slash=false) | safe }}"> |
|
{% endif -%} |
|
|
|
{% endmacro head %}
|
|
|