-
Notifications
You must be signed in to change notification settings - Fork 1
/
calendar.html
153 lines (144 loc) · 4.76 KB
/
calendar.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foundation for Sites</title>
<link rel="stylesheet" href="assets/css/app.css">
</head>
<body>
<header>
<div class="top-bar">
<div class="top-bar-left">
<ul class="menu">
<li class="active"><a href="#">News</a></li>
<li><a href="#">Projects</a></li>
<li><a href="campaigns.html">Campaigns</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="#">Cases</a></li>
<li><a href="#">Webinars</a></li>
<li><a href="#">Papers</a></li>
<li><a href="request.html">Requests</a></li>
<li><a href="#">People</a></li>
</ul>
</div>
<div class="top-bar-right">
<ul class="menu">
<li><button type="button" class="button" data-toggle="offCanvasRight1">Open Menu</button></li>
</ul>
</div>
</div>
</header>
<hr>
<!--BEGIN-->
<div class="row column">
<div class="off-canvas-wrapper">
<div class="off-canvas position-right" id="offCanvasRight1" data-off-canvas>
<!-- Close button -->
<button class="close-button" aria-label="Close menu" type="button" data-close><span aria-hidden="true">×</span></button>
<ul class="vertical menu">
<li><img src="../assets/img/image-652x377.svg"><p style="text-align: center">@Username</p></li>
<li><a data-open="exampleModal2"><p class="large button">Post</p></a></li>
<li aria-describedby="messageCount"><a href="#">Messages <span class="badge" id="messageCount">1<span class="show-for-sr">unread message</span></span></a></li>
<li><a href="#">Follow <span class="badge">22</span></a></li>
<li><a href="#">Follows <span class="badge">49</span></a></li>
<li><a href="#">Your media</a></li>
<li><a href="#">Favorite</a></li>
<li><a href="#">Favorite topics</a></li>
<li><a href="#">Recent discussions <span class="badge">3</span></a></li>
<li><a href="calendar.html">Calendar</a></li>
</ul>
</div>
</div>
</div>
<div class="reveal" id="exampleModal2" data-reveal>
<h6>Describe your case, need, event or project here.</h6>
<p class="lead"><textarea></textarea></p>
<a class="button" data-open="exampleModal3">Post</a>
<button class="close-button" data-close aria-label="Close reveal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- This is the nested modal -->
<div class="reveal" id="exampleModal3" data-reveal>
<h5>Post published</h5>
<button class="close-button" data-close aria-label="Close reveal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="row">
<div class="large-8">
<table>
<caption>March 2017</caption>
<thead>
<tr>
<th scope="col" title="Monday">M</th>
<th scope="col" title="Tuesday">T</th>
<th scope="col" title="Wednesday">W</th>
<th scope="col" title="Thursday">T</th>
<th scope="col" title="Friday">F</th>
<th scope="col" title="Saturday">S</th>
<th scope="col" title="Sunday">S</th>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
<td> </td>
<td><a href="#">1</a></td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
<td>12</td>
</tr>
<tr>
<td>13</td>
<td>14</td>
<td>15</td>
<td>16</td>
<td>17</td>
<td>18</td>
<td>19</td>
</tr>
<tr>
<td>20</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>27</td>
<td>28</td>
<td>29</td>
<td>30</td>
<td>31</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</div>
</div>
<script src="assets/js/app.js"></script>
</body>
</html>