<!DOCTYPE html> <html lang="{{ lang }}"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> {% block meta %} {% if config.description %}<meta name="description" content="{{ config.description }}" />{% endif %} <link rel="alternate" type="application/atom+xml" href="{{ get_url(path="atom.xml", trailing_slash=false) }}" /> {% endblock %} <link rel="stylesheet" href="{{ get_url(path="fonts/roboto/index.css") }}" /> <link rel="stylesheet" href="{{ get_url(path="fonts/font-awesome/css/all.css") }}" /> <link rel="stylesheet" href="{{ get_url(path="style.css") }}" /> <title>{% block title %}{{ config.title }}{% endblock %}</title> </head> <body class="has-navbar-fixed-top"> <header> {% include "menu.html" %} </header> <main> {% block main %}{% endblock %} </main> </body> </html>