You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %} - {{ title }} {% endblock %}</title>
<!-- style -->
<link rel="icon" href="{{url_for('static', filename='favicon.ico')}}" />
<link rel="stylesheet" href="{{url_for('static', filename='font/font.css')}}" />
<link rel="stylesheet" href="{{url_for('static', filename='css/variables.css')}}" />
<link rel="stylesheet" href="{{url_for('static', filename='css/categories.css')}}" />
<link rel="stylesheet" href="{{url_for('static', filename='css/global.css')}}" />
<link rel="stylesheet" href="{{url_for('static', filename='css/highlight.css')}}" />
<!-- script -->
{% block head %}{% endblock %}
<!-- Meta -->
<!-- Primary Meta Tags -->
<meta name="title" content="{{ title }}">
<meta name="description" content="Documentation workout for the Experimental Publishing master at Piet Zwart Institute, Rotterdam">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://hub.xpub.nl/soupboat/~kamo/">
<meta property="og:title" content="{{ title }}">
<meta property="og:description" content="Documentation workout for the Experimental Publishing master at Piet Zwart Institute, Rotterdam">
<meta property="og:image" content="https://hub.xpub.nl/soupboat/~kamo/static/img/sharknado.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://hub.xpub.nl/soupboat/~kamo/">
<meta property="twitter:title" content="{{title}}">
<meta property="twitter:description" content="Documentation workout for the Experimental Publishing master at Piet Zwart Institute, Rotterdam">
<meta property="twitter:image" content="https://hub.xpub.nl/soupboat/~kamo/static/img/sharknado.jpg">
</head>
<body>
<nav>
{% block nav %} {% endblock %}
</nav>
<header>
<h1 class="title">{{ title }}</h1>
{% block header %} {% endblock %}
</header>
<main>{%block content%} {% endblock %}</main>
</body>
</html>