|
| 1 | +<!doctype html> |
| 2 | +<html lang="en-GB"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | +<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + |
| 8 | +<title>{{site.title}}</title> |
| 9 | +<meta name="description" content="{{site.description}}" /> |
| 10 | +<link rel="stylesheet" href="/simple.min.css"> |
| 11 | +<style> |
| 12 | + :root {--accent-bg: #f7fff5; --accent: #47a10d} |
| 13 | + @media (prefers-color-scheme: dark) { :root {--accent-bg: #122f30; --accent: #47aaad} } |
| 14 | +</style> |
| 15 | + |
| 16 | +<link rel="icon" href="/favicon.png" /> |
| 17 | +<link rel="apple-touch-icon" href="/favicon.png"> |
| 18 | + |
| 19 | + <!-- Facebook integration --> |
| 20 | +<meta property="og:title" content="{{site.title}}"/> |
| 21 | +<meta property="og:image" content="{{site.logo}}"/> |
| 22 | +<meta property="og:url" content="{{site.url}}"/> |
| 23 | +<meta property="og:type" content="article"> |
| 24 | +<meta property="og:site_name" content="{{site.title}}"/> |
| 25 | +<meta property="og:description" content="{{site.description}}"/> |
| 26 | + |
| 27 | +<!-- Twitter integration --> |
| 28 | +<meta name="twitter:card" content="summary_large_image"> |
| 29 | +<meta name="twitter:title" content="{{site.title}}" /> |
| 30 | +<meta name="twitter:image" content="{{site.logo}}" /> |
| 31 | +<meta name="twitter:url" content="{{site.url}}" /> |
| 32 | +<meta name="twitter:description" content="{{site.description}}" /> |
| 33 | + |
| 34 | +<link rel="canonical" href="{{site.url}}"> |
| 35 | + |
| 36 | + </head> |
| 37 | + <body> |
| 38 | + |
| 39 | + <header> |
| 40 | + <nav> |
| 41 | + |
| 42 | + <a href="/" class="current">Home</a> |
| 43 | + |
| 44 | + <a href="/events/">Events</a> |
| 45 | + |
| 46 | + <a href="/projects/">Projects</a> |
| 47 | + |
| 48 | + <a href="https://github.com/{{site.github}}">GitHub</a> |
| 49 | + |
| 50 | + <a href="https://{{site.zulip}}.zulipchat.com">Zulip</a> |
| 51 | + |
| 52 | + </nav> |
| 53 | + |
| 54 | + <img style="border-radius:0" alt="code4math logo" src="{{site.logo}}"> |
| 55 | + <p>Consortium of Digital Ecosystems for Mathematics</p> |
| 56 | + </header> |
| 57 | + |
| 58 | + <main> |
| 59 | + |
| 60 | + {{ content }} |
| 61 | + |
| 62 | + </main> |
| 63 | + |
| 64 | + <footer> |
| 65 | + <p> |
| 66 | +The content of this site is licensed under |
| 67 | +<a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>. |
| 68 | + </p> |
| 69 | + </footer> |
| 70 | + |
| 71 | + </body> |
| 72 | +</html> |
0 commit comments