|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en" data-bs-theme="auto"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
| 6 | + <meta name="description" content=""> |
| 7 | + <meta name="author" content="OFTC"> |
| 8 | + <title>OFTC - {{ page.title }}</title> |
| 9 | + <!-- Favicon--> |
| 10 | + <link rel="icon" type="image/x-icon" href="/img/favicon.ico"> |
| 11 | + <!-- Core theme CSS (includes Bootstrap)--> |
| 12 | + <link href="/css/bootstrap.min.css" rel="stylesheet"> |
| 13 | + <!-- bootstrap icons --> |
| 14 | + <link rel="stylesheet" href="/css/bootstrap-icons.min.css"> |
| 15 | + <link href='/css/main.css' rel='stylesheet'> |
| 16 | + <!-- FOUC avoidance --> |
| 17 | + <script>0</script> |
| 18 | + {% for script_src in page.script_srcs %} |
| 19 | + <script src="{{script_src}}"></script> |
| 20 | + {% endfor %} |
| 21 | + </head> |
| 22 | + <body> |
| 23 | + <!-- Responsive navbar--> |
| 24 | + {% include navbar.html %} |
| 25 | + <!-- Page content--> |
| 26 | + <main id="jump-to-content"> |
| 27 | + {% include hero.html %} |
| 28 | + <div class="container"> |
| 29 | + <div class="row pt-5 pb-5"> |
| 30 | + <div class="pl-2 col-lg-9"> |
| 31 | + <p class="lead" role="heading" aria-level="2">{{ page.date | date: "%B %d, %Y" }}</p> |
| 32 | + {{ content }} |
| 33 | + <a href="/archives/" aria-label="Back to the archives">Back to the archives</a></li> |
| 34 | + </div> |
| 35 | + </div> |
| 36 | + </div> |
| 37 | + </main> |
| 38 | + {% include footer.html %} |
| 39 | + <!-- Bootstrap core JS--> |
| 40 | + <script src="/js/bootstrap.bundle.min.js"></script> |
| 41 | + <!-- Core theme JS--> |
| 42 | + <script src="/js/main.js"></script> |
| 43 | + <!-- more FOUC avoidance --> |
| 44 | + <noscript><style>body { visibility: visible; }</style></noscript> |
| 45 | + </body> |
| 46 | +</html> |
0 commit comments