-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtemplate.html.pp
More file actions
85 lines (82 loc) · 3.96 KB
/
Copy pathtemplate.html.pp
File metadata and controls
85 lines (82 loc) · 3.96 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
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
◊(define rel-path (select-from-metas "rel-path" metas))
<html lang="en">
<head>
<meta charset="utf-8">
<base href="◊(select-from-metas "rel-path" metas)"></base>
<title>◊(select-from-metas "title" metas)</title>
<meta name="description" content="The Pyret programming language">
<meta name="author" content="The Pyret Crew">
<meta property="og:author" content="The Pyret Crew">
<meta property="og:image" content="http://www.pyret.org/img/pyret-logo.png">
<meta property="og:image:secure_url" content="https://www.pyret.org/img/pyret-logo.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="444">
<meta property="og:image:height" content="445">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@|"@"|pyretlang" />
<meta name="twitter:title" content="◊(select-from-metas "title" metas)" />
<meta name="twitter:image" content="https://www.pyret.org/img/pyret-logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./img/pyret-icon.png">
<link rel="canonical" href="@|full-uri|">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap">
<link rel="stylesheet" href="//cdn.jsdelivr.net/font-hack/2.019/css/hack.min.css">
<link rel="stylesheet" type="text/css" href="./bootstrap-css/bootstrap-5.0.2-dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./css/pygments.css">
<link rel="stylesheet" type="text/css" href="./css/codemirror.css">
<link rel="stylesheet" type="text/css" href="./css/scribble.css">
<link rel="stylesheet" type="text/css" href="./css/custom.css">
<script src="./bootstrap-css/bootstrap-5.0.2-dist/js/bootstrap.min.js">
<script type="module" src="./node_modules/pyret-embed/dist/pyret.js"></script>
<style>
.more-navbar-space li {
margin-left: 1.5rem;
}
</style>
<style>
footer a {
color: #f9e79f; /* Soft Yellow */
}
</style>
</head>
<body>
<header class="navbar navbar-expand-lg navbar-light bg-light fixed-top more-navbar-space">
<div class="container">
<a href="./index.html" class="navbar-brand">
<img class="navbar-logo" src="./img/pyret-banner.png"></img>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse"
role="navigation"
id="navbarSupportedContent">
<ul class="navbar-nav me-auto">
<li class="nav-item"><a class="nav-link fancyhover-above" href="/docs/latest/">Documentation</a></li>
<li class="nav-item"><a class="nav-link fancyhover-above" href="./pyret-code/">Why Pyret?</a></li>
<li class="nav-item"><a class="nav-link fancyhover-above" href="./crew/">The Pyret Crew</a></li>
<li class="nav-item"><a class="nav-link fancyhover-above" href="./discuss/">Scuttlebutt</a></li>
<li class="nav-item"><a class="nav-link fancyhover-above" href="https://github.com/brownplt/pyret-lang">Source Code</a></li>
</ul>
</div>
</header>
◊(->html (body doc))
<footer class="bg-dark text-white text-center py-2">
<div class="container">
<p>
☠️
Remember:
<a href="https://en.wikipedia.org/wiki/International_Talk_Like_a_Pirate_Day" target="_blank">
International Talk Like a Pirate Day</a>
is September 19 every year!
☠️
</p>
<p class="fst-italic">Site built using
<a href="https://docs.racket-lang.org/pollen/">Pollen</a> and
<a href="https://www.racket-lang.org/">Racket</a>.
</p>
</div>
</footer>
</body>
</html>