site-sdf/templates/index.html

1 line
640 B
HTML
Raw Normal View History

2022-03-24 15:11:03 +00:00
{%- import "macros.html" as m -%} <!DOCTYPE html> <html> <head> <meta charset="utf-8"> {% if title in page %} <title>{{ page.title }}</title> {% else %} <title>{{ extra.name }} &mdash; {{ extra.description }}</title> {% endif %} {% if site.highlighter %} <link rel="stylesheet" href="{{ site.url }}/assets/css/syntax.css" type="text/css" /> {% endif %} <link rel="stylesheet" href="/main.css" type="text/css" /> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> {% block content %} {{ page.content }} {% endblock %} </body> </html>