-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommittee-template.html
136 lines (113 loc) · 4.11 KB
/
committee-template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<title>[Committee name] | ScalaMUN</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/mobile_style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
</head>
<body>
<!-- CONTAINER -->
<div class="container">
<!-- HEADER -->
<header class="site-header">
<div class="hd-top">
<div class="center">
<h1 class="site-title"><a href="index.html">ScalaMUN</a></h1>
<a href="index.html"><img class="site-logo" src="afbeeldingen/ScalaMUN_logo_white.png" height="80px"></a>
<h1 class="site-slogan"><em>Travel the World!</em></h1>
</div><!-- /center -->
</div><!-- /hd-top -->
<div class="hd-bottom">
<div class="center">
<nav class="main-navigation">
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li class="submenu"><a href="#" aria-haspopup="true">Committees <i class="fas fa-caret-down" aria-hidden="true"></i></a>
<ul>
<li><a href="security-council.html">Security Council</a></li>
<li><a href="legal-committee.html">Legal Committee</a></li>
<li><a href="economic-social-council.html">Economic and Social Council</a></li>
<li><a href="human-rights-council.html">Human Rights Council</a></li>
<li><a href="alternate-history-committee.html">Alternate History Committee</a></li>
</ul>
</li>
<li><a href="venue.html">Venue</a></li>
<li><a href="who-are-we.html">Who are we?</a></li>
<li><a href="social-media.html">Social Media</a></li>
<li><a href="sponsors.html">Sponsors</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="handle">
<h3 class="handle-text">Menu</h3>
<div class="hamburger-menu">
<i class="fas fa-bars"></i>
</div>
</div>
</div><!-- /center -->
</div><!-- /hd-bottom -->
</header>
<div class="site-content">
<div class="center">
<div class="primary">
<div class="primary-inner">
<article>
<h2>[Committee name]</h2>
<img class="logo" src="afbeeldingen/ScalaMUN_logo.png">
<h3>Topics & research reports</h3>
<ul>
<li>
<p><a href="#dropboxlink">[Point 1]</a></p>
</li>
<li>
<p><a href="#dropboxlink">[Point 2]</a></p>
</li>
</ul><br>
<h3>Chairs</h3>
<p>
[Chair names]
</p><br>
<div class="country-division">
<h3>Country Division [committee name] committee</h3>
<table>
<col width="40%">
<col width="30%">
<col width="30%">
<tr>
<th>Delegation</th>
<th>Name</th>
<th>School</th>
</tr>
</table>
</div>
</article>
</div>
</div>
<div class="secondary">
<article>
<a class="twitter-timeline" data-height="600" data-dnt="true" data-link-color="#5a92e8" href="https://twitter.com/ScalaMUN">Tweets
by ScalaMUN</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script><br>
<iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FScalamun&tabs=timeline&width=340&height=600&small_header=true&adapt_container_width=true&hide_cover=false&show_facepile=true&appId"
width="340" height="600" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowtransparency="true"></iframe>
</article>
</div>
</div>
</div>
<div class="empty"></div>
<footer class="site-footer">
© 2016 - 2018 ScalaMUN - Mark Bekooy - <a href="mailto:[email protected]">[email protected]</a>
</footer>
</div> <!-- END CONTAINER -->
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(".handle").on("click", function () {
$(".menu").slideToggle(300);
});
</script>
</html>