11<!DOCTYPE html>
22< html lang ="en ">
3- < body class ="body ">
4- <!--Full screen navigation section-->
5- < nav class ="navigation navbar sticky-top navbar-light ">
6- < div class ="navigation__brand ">
7- < a class ="navigation__brand-link navbar-brand " href ="index.html ">
8- < img class ="navigation__brand-img " src ="{{ site.baseurl }}/static/images/site_logo/python_sprints_logo.png " alt ="Python Sprints Logo ">
9- < span class ="navigation__brand-name "> Python Sprints</ span >
10- </ a >
11- </ div >
12-
13- < div class ="navigation__button-open-container ">
14- < div class ="navigation__hamburger-bar "> </ div >
15- < div class ="navigation__hamburger-bar "> </ div >
16- < div class ="navigation__hamburger-bar "> </ div >
17- </ div >
18-
19- < div class ="navigation__button-close-container ">
20- < a href ="javascript:void(0) " class ="navigation__button-close ">
21- < i class ="navigation__button-close fas fa-times "> </ i >
22- </ a >
23- </ div >
24- < div class ="navigation__overlay ">
25- < div class ="navigation__overlay-content ">
26- < a class ="navigation__link " href ="{{ '/' | prepend: site.baseurl }} "> Home</ a >
27- < a class ="navigation__link " href ="{{ '/about' | prepend: site.baseurl }} "> About</ a >
28- < a class ="navigation__link " href ="# "> Getting Started</ a >
29- < a class ="navigation__link " href ="# "> Projects</ a >
30- < a class ="navigation__link " href ="# "> Contact</ a >
31- </ div >
32- </ div >
33- </ nav >
34-
35- < div class ="container ">
36- {{ content }}
37- </ div >
38-
39-
40-
41- <!--Footer-->
42- < footer class ="footer ">
43- < div class ="row ">
44- < div class ="col-md-4 text-center ">
45- < p class ="section-content footer__text "> Find Us Online</ p >
46- < hr class ="footer__divider ">
47- < a href ="https://www.meetup.com/Python-Sprints/ " target ="_blank "> < i class ="footer__icon fab fa-meetup "> </ i > </ a >
48- < a href ="https://twitter.com/py_sprints " target ="_blank "> < i class ="footer__icon fab fa-twitter "> </ i > </ a >
49- </ div >
50- < div class ="col-md-4 ">
51- < p class ="section-content footer__text "> Our Sponsors</ p >
52- < hr class ="footer__divider ">
53- < div class ="row ">
54- < div class ="col-lg-6 ">
55- < a class ="footer__sponsor-link " href ="https://www.linkedin.com/in/hamishpitkeathly/ ">
56- < img class ="footer__img " src ="{{ site.baseurl }}/static/images/sponsors/harvey_nash_130x90.png ">
57- </ a >
58- < a class ="footer__sponsor-link " href ="https://www.python.org/psf/ ">
59- < img class ="footer__img " src ="{{ site.baseurl }}/static/images/sponsors/python_software_foundation.jpeg ">
60- </ a >
3+ {% include head.html %}
4+ < body class ="body ">
5+ {% include navigation.html %}
6+ < main >
7+ < article class ="post ">
8+ < div class ="container m-auto ">
9+ < div class ="col-md-12 ">
10+ < img class ="post__img img-fluid " src ="{{ site.baseurl }}/{{ page.image }} ">
11+ </ div >
6112 </ div >
62- < div class ="col-lg-6 ">
63- < a class ="footer__sponsor-link " href ="https://www.touchsurgery.com/jobs.html ">
64- < img class ="footer__img " src ="{{ site.baseurl }}/static/images/sponsors/touch_surgery.png ">
65- </ a >
66- < a class ="footer__sponsor-link " href ="https://www.bloomberg.com/careers/ ">
67- < img class ="footer__img " src ="{{ site.baseurl }}/static/images/sponsors/bloomberg.png ">
68- </ a >
13+ < div class ="post__content container-fluid ">
14+ < div class ="col-md-12 ">
15+ {{ page.content }}
16+ </ div >
6917 </ div >
70- </ div >
71- </ div >
72- < div class ="col-md-4 ">
73- < p class ="section-content footer__text "> Python Sprints</ p >
74- < hr class ="footer__divider ">
75- < a class ="footer__link " href ="# " target ="_blank "> About</ a >
76- < a class ="footer__link " href ="# " target ="_blank "> Getting Started</ a >
77- < a class ="footer__link " href ="# " target ="_blank "> Projects</ a >
78- < a class ="footer__link " href ="# " target ="_blank "> Contact</ a >
79- < a class ="footer__link " href ="# " target ="_blank "> Credits</ a >
80- </ div >
81- </ div >
82-
83- < div class ="footer__content row container-fluid ">
84- < div class ="col-md-12 ">
85- < p class ="section-content footer__text-copyright ">
86- © Copyright
87- < script > document . write ( new Date ( ) . getFullYear ( ) ) </ script >
88- - Python Sprints
89- < img class ="footer__brand-img " src ="{{ site.baseurl }}/static/images/site_logo/python_sprints_logo.png " alt ="Python Sprints Logo ">
90-
91- </ p >
92- </ div >
93- </ div >
94- </ footer >
95- <!--Scripts-->
96- < script src ="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js "> </ script >
97- < script src ="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js " integrity ="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q " crossorigin ="anonymous "> </ script >
98- < script src ="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js " integrity ="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl " crossorigin ="anonymous "> </ script >
99- < script src ="{{ site.baseurl }}/static/js/site.js "> </ script >
100- </ body >
101- < head >
102- < meta charset ="UTF-8 ">
103- < meta name ="viewport " content ="width=device-width, initial-scale=1 ">
104- < script defer src ="https://use.fontawesome.com/releases/v5.0.6/js/all.js "> </ script >
105- < link href ="https://fonts.googleapis.com/css?family=Share+Tech+Mono " rel ="stylesheet ">
106- < link href ="https://fonts.googleapis.com/css?family=Encode+Sans+Expanded " rel ="stylesheet ">
107- < link href ="https://fonts.googleapis.com/css?family=Playfair+Display " rel ="stylesheet ">
108- < link rel ="stylesheet " href ="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css " integrity ="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm " crossorigin ="anonymous ">
109- < link rel ="stylesheet " type ="text/css " href ="{{ site.baseurl }}/static/css/typography.css ">
110- < link rel ="stylesheet " type ="text/css " href ="{{ site.baseurl }}/static/css/style.css ">
111-
112- < title > {{ page.title }}</ title >
113- </ head >
18+ </ article >
19+ {% include footer.html %}
20+ </ main >
21+ {% include scripts.html %}
22+ </ body >
11423</ html >
0 commit comments