website/_layouts/default.html

36 lines
976 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
{% if page.title %}
<title>{{ page.title }}</title>
{% else %}
<title>{{ site.name }}</title>
{% endif %}
<meta name="description" content="{{ site.description }}">
{% if site.google_verification %}
<meta name="google-site-verification" content="{{ site.google_verify }}">
{% endif %}
<link rel="icon" href="/assets/img/favicon.ico">
<!--<link href='https://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'>-->
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
<link rel="alternate" type="application/rss+xml" title="socialnerds.org" href="/feed.xml">
</head>
<body>
<div class="wrapper">
{{ content }}
</div>
</body>
</html>