-
Notifications
You must be signed in to change notification settings - Fork 3
/
template.erb
105 lines (93 loc) · 2.48 KB
/
template.erb
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
<%# coding: UTF-8 %>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Labitat</title>
<link rel="shortcut icon" href="https://new.labitat.dk/favicon.ico" >
<link rel="stylesheet" href="https://new.labitat.dk/pico.min.css">
<style>
.banner {
display: flex;
align-content: flex-start;
align-items: center;
flex-direction: row;
padding: .5em;
background-color: black;
color: white;
font-size: 40pt;
margin-bottom: .5em;
}
.banner .title {
text-transform: uppercase;
}
.logo {
max-width: 100px;
margin-right: 20px;
}
@media screen and (prefers-color-scheme: dark) {
.banner {
background-color: #eee;
color: #111;
}
}
</style>
</head>
<body>
<main class="container">
<div class="banner"><img class="logo" src="https://new.labitat.dk/logo.svg"><span class="title">Labitat</span> <a style="margin-left: auto" href="https://labitat.dk/wiki/Donate" role="button">Donate now!</a></div>
<div class="grid">
<div>
<h2>About</h2>
<%= about_section %>
</div>
<div>
<h2>Connect</h2>
<%= connect_section %>
</div>
<div>
<h2>Events</h2>
<%= events_section %>
</div>
</div>
<div class="grid">
<div>
<h2>Just visit us!</h2>
<%= just_visit_us_section %>
</div>
<div>
<img src="https://new.labitat.dk/Labi_sign.jpg">
</div>
</div>
<div class="grid">
<div>
<h2>Upcoming events</h2>
<% events.each do |event| %>
<% if event.description != event.summary %>
<details>
<summary><b><a href="<%= event.url %>"><%= event.summary %></a></b><br>@ <%= event.dtstart %></summary>
<%= markdown.render(event.description.to_s) %>
</details>
<% else %>
<p><b><a href="<%= event.url %>"><%= event.summary %></a></b><br>@ <%= event.dtstart %></p>
<% end %>
<% end %>
</div>
<div>
<h2>Recent wiki changes</h2>
<% wiki_changes.each do |item| %>
<p><b><a href="<%= item.link.href %>"><%= item.title.content %></a></b><br>
<%= time_ago_in_words(item.updated.content) %> ago</p>
<% end %>
</div>
</div>
<div class="grid">
<div>
<h3>Upcoming events</h3>
<%= everything_else_section %>
</div>
</div>
<p>Press or any other questions please contact: <a href="mailto:[email protected]">[email protected]</a></p>
</main>
</body>
</html>