|
1 | 1 | <!DOCTYPE html>
|
2 | 2 | <html>
|
3 |
| - <head> |
4 |
| - <meta charset="utf-8"> |
5 |
| - <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
6 |
| - <title>{{ page.title }}</title> |
7 |
| - <meta name="viewport" content="width=device-width"> |
8 |
| - |
9 |
| - <!-- brick.im fonts --> |
10 |
| - <link rel="stylesheet" href="//brick.a.ssl.fastly.net/Source+Code Pro:400"> |
11 |
| - |
12 |
| - <!-- typography fonts --> |
13 |
| - <link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/css/typo.css"> |
14 |
| - |
15 |
| - <!-- font awesome icons --> |
16 |
| - <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet"> |
17 |
| - |
18 |
| - <!-- syntax highlighting css --> |
19 |
| - <link rel="stylesheet" href="{{ site.baseurl }}/css/syntax.css"> |
20 |
| - |
21 |
| - <!-- custom css --> |
22 |
| - <link rel="stylesheet" href="{{ site.baseurl }}/css/main.css"> |
23 |
| - </head> |
| 3 | + {% include head.html %} |
24 | 4 | <body>
|
25 |
| - <div class="navbar"> |
26 |
| - <div class="navlist-bg"> |
27 |
| - <!-- This is temporary until we get a decent logo --> |
28 |
| - <div class="brand logo" style="font-size:48px; color:white; margin-left:-48px; margin-top:2px"> |
29 |
| - <a href="{{ site.baseurl }}/">λ</a> |
30 |
| - <!-- <img width="64px" height="64px" src="./assets/images/64x64_balloon.png"></img> --> |
31 |
| - </div> |
32 |
| - <div class="navlist"> |
33 |
| - <div class="item"> |
34 |
| - <h1 class="brand {% if page.title == 'ICPC'%}active{% endif %}"> |
35 |
| - <a href="{{ site.baseurl }}/">ICPC</a> |
36 |
| - </h1> |
37 |
| - </div> |
38 |
| - |
39 |
| - <div class="item {% if page.title == 'Announcements' %}active{% endif %}"> |
40 |
| - <div class="navlink" |
41 |
| - style="width:150px;"> |
42 |
| - <a href="{{ site.baseurl }}/announcements.html"> |
43 |
| - Announcements |
44 |
| - </a> |
45 |
| - </div> |
46 |
| - </div> |
47 |
| - <div class="item {% if page.title == 'Calendar' %}active{% endif %}"> |
48 |
| - <div class="navlink" |
49 |
| - style="width:100px;"> |
50 |
| - <a href="{{ site.baseurl }}/calendar.html"> |
51 |
| - Calendar |
52 |
| - </a> |
53 |
| - </div> |
54 |
| - </div> |
55 |
| - <div class="item {% if page.title == 'Practice' %}active{% endif %}"> |
56 |
| - <div class="navlink" |
57 |
| - style="width:100px;"> |
58 |
| - <a href="{{ site.baseurl }}/practice.html"> |
59 |
| - Practice |
60 |
| - </a> |
61 |
| - </div> |
62 |
| - </div> |
63 |
| - <div class="item {% if page.title == 'Learn' %}active{% endif %}"> |
64 |
| - <div class="navlink" |
65 |
| - style="width:80px;"> |
66 |
| - <a href="{{ site.baseurl }}/learn.html"> |
67 |
| - Learn |
68 |
| - </a> |
69 |
| - </div> |
70 |
| - </div> |
71 |
| - <div class="item {% if page.title == 'Contact' %}active{% endif %}"> |
72 |
| - <div class="navlink" |
73 |
| - style="width:100px;"> |
74 |
| - <a href="{{ site.baseurl }}/contact.html"> |
75 |
| - Contact |
76 |
| - </a> |
77 |
| - </div> |
78 |
| - </div> |
79 |
| - |
80 |
| - <div class="item"> |
81 |
| - <h1 class="brand right"> |
82 |
| - <a href="http://www.acm.uiuc.edu/"> |
83 |
| - ACM@UIUC |
84 |
| - </a> |
85 |
| - </h1> |
86 |
| - </div> |
87 |
| - </div> |
88 |
| - </div> |
89 |
| - </div> |
| 5 | + {% include navbar.html %} |
90 | 6 |
|
91 | 7 | {% if page.title == "ICPC" %}
|
92 |
| - <div class="warbanner"></div> |
| 8 | + <div class="warbanner"></div> |
93 | 9 | {% endif %}
|
94 | 10 |
|
95 | 11 | <div class="site">
|
96 | 12 | {{ content }}
|
97 | 13 | </div>
|
98 | 14 | </body>
|
99 |
| - |
100 |
| -<script src="//code.jquery.com/jquery-1.11.0.min.js"></script> |
101 |
| -<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script> |
102 |
| -<script type="text/javascript" src="{{ site.baseurl }}/js/main.js"></script> |
103 | 15 | </html>
|
0 commit comments