net/_layouts/default.html

19 lines
589 B
HTML
Raw Normal View History

2012-01-02 23:15:05 -05:00
<!DOCTYPE html>
<html>
<head>
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
2015-01-29 08:51:59 -05:00
{% include meta.html %}
2022-05-26 21:57:21 -04:00
<link href="/css/main.css" media="screen, projection" rel="stylesheet" type="text/css">
2012-01-02 23:15:05 -05:00
<link href="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml">
</head>
2022-05-26 21:57:21 -04:00
<body class="bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100">
<div class="container max-w-2xl mb-24 mt-8 mx-auto">
<div class="px-5 md:px-8">
<main id="main">
{{ content }}
</main>
2013-11-10 12:47:03 -05:00
</div>
2013-11-08 12:47:13 -05:00
</div>
2012-01-02 23:15:05 -05:00
</body>
</html>