27 lines
893 B
HTML
27 lines
893 B
HTML
<!DOCTYPE html>
|
|
<html lang="pt-br">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{%- set title_tail = " ~ " ~ config.title %}
|
|
{%- if page.title %}
|
|
{%- set title = page.title ~ title_tail %}
|
|
{%- elif section.title %}
|
|
{%- set title = section.title ~ title_tail %}
|
|
{%- else %}
|
|
{%- set title = config.title %}
|
|
{%- endif %}
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
|
|
<link href="{{ get_url(path="assets/css/overrides.css") }}" rel="stylesheet">
|
|
<script defer src="https://stats.jutty.dev/script.js" data-website-id="d83c2773-91fb-4b30-a9fb-30cfb34500d3"></script>
|
|
<noscript><img src="https://stats.jutty.dev/p/r5fN3GRrA"></noscript>
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
|
|
</html>
|