This repository was archived by the owner on Apr 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
137 lines (132 loc) · 4.8 KB
/
events.html
File metadata and controls
137 lines (132 loc) · 4.8 KB
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
137
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Events | PUP Programming Guild</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Abel|Lato:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="vendor/jquery-ui-1.12.1.custom/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="components/calendar/calendar.css">
<link rel="stylesheet" type="text/css" href="components/form/form.css">
<link rel="stylesheet" type="text/css" href="components/navbar/navbar.css">
<link rel="stylesheet" type="text/css" href="components/section/section.css">
<link rel="stylesheet" type="text/css" href="components/footer/footer.css">
<link rel="stylesheet" type="text/css" href="components/events-list/events-list.css">
<style>
body {
font-family: Lato, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: Abel, sans-serif;
}
</style>
</head>
<body>
<h1 class="sr-only">PUP Programming Guild</h1>
<nav class="page-navbar navbar navbar-default navbar-static-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">PUP Programming Guild</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="events.html">Events</a></li>
<li><a href="members.html">Members</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
<section class="page-section">
<div class="container-fluid">
<div class="row events-component">
<div class="col-xs-12 col-sm-8">
<div class="page-calendar -events"></div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="events-list">
<ol class="days">
<li class="day day-events">
<h2>2016-11-26</h2>
<ul class="events">
<li class="event"><a href="event.html">Event Name</a></li>
<li class="event"><a href="event.html">Event Name</a></li>
<li class="event"><a href="event.html">Event Name</a></li>
</ul>
</li>
</ol>
</div>
</div>
</div>
</div>
</section>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-6">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-12">
<h2>About</h2>
<ul class="list-unstyled">
<li><a href="#">What We Are</a></li>
<li><a href="#">What We Do</a></li>
<li><a href="#">What We Plan To Do</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-md-12">
<h2>Links</h2>
<ul class="list-unstyled">
<li><a href="https://pup.edu.ph">PUP Official Web Site</a></li>
</ul>
</div>
</div>
</div>
<div class="col-xs-12 col-md-6">
<form class="page-form" method="post">
<h2>Contact</h2>
<div class="form-group">
<label for="footer/contact/email">Your email address</label>
<input type="email" id="footer/contact/email" required
placeholder="Your email address" class="form-control">
PUP Programming Guild will respond to this address.
</div>
<div class="form-group">
<label for="footer/contact/subject">Subject</label>
<input type="text" id="footer/contact/subject" required
placeholder="Subject" class="form-control">
</div>
<div class="form-group">
<label for="footer/contact/message">Message</label>
<textarea class="textarea form-control" rows="5" required
id="footer/contact/message" placeholder="Message"></textarea>
You will be given a copy of this message.
</div>
<div class="form-group actions">
<button class="btn btn-primary" type="submit">Send</button>
</div>
</form>
</div>
</div>
<div class="text-muted">
<p>
PUP Programming Guild, 2016.
</p>
</div>
</div>
</footer>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="vendor/jquery-ui-1.12.1.custom/jquery-ui.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="node_modules/moment/moment.js"></script>
<script src="components/calendar/calendar.js"></script>
</body>
</html>