-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.pt
More file actions
73 lines (67 loc) · 2.61 KB
/
Copy pathlayout.pt
File metadata and controls
73 lines (67 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<foo tal:omit-tag="1" metal:define-macro="layout"><!DOCTYPE HTML>
<!--
Miniport by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Pyjokes - <span metal:define-slot="title" /></title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="/css/main.css" />
<link rel="shortcut icon" href="/images/pyjokes.png" type="image/x-icon" />
<link rel="icon" href="/images/pyjokes.png" type="image/x-icon" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@pyjokes_bot" />
<meta property="og:image" content="${site.config.base_url}/images/pyjokes.png" />
<meta name="twitter:image" content="${site.config.base_url}/images/pyjokes.png" />
<meta metal:define-slot="head" />
</head>
<body class="is-preload">
<!-- Nav -->
<nav id="nav">
<ul class="container">
<li><a href="/">Home</a></li>
<li><a href="/story/">Story</a></li>
<li><a href="/society/">Society</a></li>
<li><a href="/api/">API</a></li>
</ul>
</nav>
<section metal:define-slot="content" />
<!-- Contact -->
<article id="contact" class="wrapper style4">
<div class="container medium">
<div class="row">
<div class="col-12">
<hr />
<h3>Follow us on social media</h3>
<ul class="social">
<li><a href="https://x.com/pyjokes_bot" class="icon brands fa-twitter"><span class="label">Twitter/X</span></a></li>
<li><a href="https://mastodon.social/@pyjokes" class="icon brands fa-mastodon"><span class="label">Mastodon</span></a></li>
<li><a href="https://github.com/pyjokes/pyjokes" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
</ul>
<hr />
</div>
</div>
<footer>
<ul id="copyright">
<li>© Pyjokes</li>
<li>Website generated by <a href="https://github.com/bennuttall/beemo">Beemo</a></li>
<li>Design: <a href="https://html5up.net">HTML5 UP</a></li>
</ul>
</footer>
</div>
</article>
<!-- Scripts -->
<script src="/js/jquery.min.js"></script>
<script src="/js/jquery.scrolly.min.js"></script>
<script src="/js/browser.min.js"></script>
<script src="/js/breakpoints.min.js"></script>
<script src="/js/util.js"></script>
<script src="/js/main.js"></script>
<div metal:define-slot="scripts" />
</body>
</html>
</foo>