3356f60421
working on it on a separate branch
21 lines
676 B
HTML
21 lines
676 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.name }}{% endif %}</title>
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/assets/style/main.css?{{ site.time | date: '%s' }}">
|
|
<link rel="alternate" type="application/rss+xml" title="RSS Feed for {{ site.name }}" href="{{ site.baseurl }}/feed.xml" />
|
|
{% seo %}
|
|
</head>
|
|
<body>
|
|
{% include security-camera-svgrepo-com.svg %}
|
|
<div class="container">
|
|
{{ content }}
|
|
</div>
|
|
<footer>
|
|
Last generated at {{ site.time | date_to_rfc822 }}
|
|
</footer>
|
|
</body>
|
|
</html>
|