all repos — existentialcrisis.sh @ b4efe85776f6a84a5b7622a9ac1d6c3e72866063

existential crisis API

templates/layout.html

 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
{{define "layout"}}
<!doctype html>
<html>
<head>
	<style>
		body {background-color: #222222;}
		a    {color: #ffffff;}
		pre    {color: #ffffff;}
		sub    {color: #4e4e4e;}
		h1,h2,h3,h4   {color: #ffffff;}
		p    {color: #ffffff96;}
	</style>
		
	<!-- a j3s.sh production -->
	<meta charset="utf-8">
	<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22><text y=%2226%22 font-size=%2226%22>💀</text></svg>">
	<title>{{template "title"}}</title>
</head>
<body>
	<h1><a href="/">💀</a> existentialcrisis.sh</h1>
<p><a href="/features.html">features</a> <a href="/pricing.html">pricing</a>
	{{template "body"}}
</body>
</html>
{{end}}