|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"><head> |
| 3 | +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
| 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="PyATL Atlanta Python Programmers group"> |
| 7 | + <meta name="author" content="PyATl"> |
| 8 | + <meta name="twitter:card" content="summary"> |
| 9 | + <meta name="twitter:site" content="@pyatl"> |
| 10 | + <meta name="twitter:title" content="{% block twitter_card_title %}{% endblock %}"> |
| 11 | + <meta name="twitter:description" content="{% block twitter_card_description %}{% endblock %}"> |
| 12 | + <link rel="alternate" type="application/rss+xml" title="PyATL news" href="https://pyatl.dev/blog/feeds/latest/"> |
| 13 | + {% load static %} |
| 14 | + <link rel="icon" href="{% static 'favicon.ico' %}" /> |
| 15 | + |
| 16 | + <title>{% block page_title %}{% endblock %}</title> |
| 17 | + |
| 18 | + <link rel="canonical" href="https://pyatl.dev"> |
| 19 | + |
| 20 | + <!-- Bootstrap core CSS --> |
| 21 | +<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> |
| 22 | + |
| 23 | + |
| 24 | + <style> |
| 25 | + @import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap'); |
| 26 | + |
| 27 | + body { |
| 28 | + font-family: 'Open Sans', sans-serif; |
| 29 | + padding-top: 5rem; |
| 30 | + } |
| 31 | + |
| 32 | + main { min-height:100vh; } |
| 33 | + |
| 34 | + footer {background-color:#f5f5f5;} |
| 35 | + |
| 36 | + {% block page_css %}{% endblock %} |
| 37 | + </style> |
| 38 | + </head> |
| 39 | + <body> |
| 40 | + |
| 41 | + |
| 42 | +<main role="main"> |
| 43 | + {% for message in messages %} |
| 44 | + <div class="alert alert-success alert-dismissible fade show" role="alert"> |
| 45 | + {{ message }} |
| 46 | + <button type="button" class="close" data-dismiss="alert" aria-label="Close"> |
| 47 | + <span aria-hidden="true">×</span> |
| 48 | + </button> |
| 49 | + </div> |
| 50 | + {% endfor %} |
| 51 | + |
| 52 | + |
| 53 | + {% block content %} |
| 54 | + {# pattern_library_rendered_pattern is where the pattern library will inject the rendered pattern. #} |
| 55 | + {{ pattern_library_rendered_pattern }} |
| 56 | + {% endblock %} |
| 57 | +</main> |
| 58 | + |
| 59 | + |
| 60 | +<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> |
| 61 | +<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> |
| 62 | +<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> |
| 63 | + |
| 64 | +{% block js %}{% endblock %} |
| 65 | + |
| 66 | +<script> |
| 67 | + document.getElementById("year").innerHTML = new Date().getFullYear(); |
| 68 | +</script> |
| 69 | + |
| 70 | +</body></html> |
0 commit comments