-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (120 loc) · 4.84 KB
/
Copy pathindex.html
File metadata and controls
137 lines (120 loc) · 4.84 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
---
layout: default
---
<div class="row">
<div class="col-md-6 offset-md-3">
{% assign post = site.posts.first %}
{% assign slug = post.id | split: '/' | last %}
{% assign location = site.data.locations[slug] %}
{% if slug == 'none' %}
<img
class="img-fluid"
src="images/flyers/flyer-no-disco.png?v={{ site.time | date: '%s' }}"
alt="Flyer for Secret Roller Disco: NO DISCO THIS WEEK, {{post.date | date: '%A, %B %-d, %Y'}}."
\>
{% else %}
<img
class="img-fluid"
src="images/flyers/flyer-{{post.date | date: '%F'}}.png?v={{ site.time | date: '%s' }}"
alt="
Flyer for Secret Roller Disco:
{{post.date | date: '%A, %B %-d, %Y'}}, {{post.time}}.
{{location['name']}}. {{post.alt}} {{location['address']}}. All wheels welcome.
{% if post.rentals == true %}Skate Rentals!{% else %}No Skate Rentals.{% endif %}
"
\>
{% endif %}
<div class="info section">
<h3>
{{post.date | date: "%A"}}<br/>
{{post.date | date: "%B %-d, %Y"}}<br/>
{{post.time}}
</h3>
<p>
{{location['name']}}<br/>
{% if location['name'] contains 'Secret' %}
<a href="tel:{{location['address']}}" target="_blank">{{location['address']}}</a>
{% elsif slug == 'gone' %}
{{location['address']}}
{% elsif slug == 'none' %}
{{location['address']}}
{% else %}
{{location['address']}}<br/>
{{location['city']}}</p><p>
<a href="http://maps.apple.com/?q={{location['address']}}+{{location['city']}}" target="_blank">Apple Maps</a> •
<a href="http://maps.google.com/?q={{location['address']}}+{{location['city']}}" target="_blank">Google Maps</a>
{% endif %}
</p>
{% if post.alt %}
<p class='alt'>{{post.alt}}</p>
{% endif %}
{% if post.theme %}
<p><strong>Theme</strong><br/>{{post.theme}}</p>
{% endif %}
{% if post.djs %}
<p><strong>Featuring</strong><br/>
{% for dj in post.djs %}
{% if dj.name %}
{% if dj.link %}
<a href="{{dj.link}}" target="_blank">{{dj.name}}</a>
{% else %}
{{dj.name}}
{% endif %}
<br/>
{% endif %}
{% endfor %}
</p>
{% endif %}
{% if post.rentals == true %}
<p>🥳 <span class='rentals'>SKATE RENTALS</span> 🥳</p>
{% elsif post.rentals == false %}
<p><strong>☹️ NO SKATE RENTALS ☹️</strong></p>
{% endif %}
</div>
{% if post.map == true %}
<div class="section">
<img
class="img-fluid"
src="images/flyers/location-{{slug}}.png"
alt="Location Map This Week: {{location['name']}}. {{location['address']}}."
\>
</div>
{% endif %}
<div class="social section">
<ul class="d-flex list-unstyled justify-content-center">
<li>
<a href="https://www.instagram.com/secretrollerdisco/" target="_blank">
<img src="images/social/instagram.png" class="social" alt="instagram logo">
</a>
</li>
<li>
<a href="https://www.tiktok.com/@secretrollerdisco" target="_blank">
<img src="images/social/tiktok.png" class="social" alt="tiktok logo">
</a>
</li>
<li>
<a href="https://www.facebook.com/groups/356245775488560" target="_blank">
<img src="images/social/facebook.png" class="social" alt="facebook logo">
</a>
</li>
</ul>
</div>
<div class="section">
<img src="images/2026-summer-schedule.png" class="img-fluid" alt="List of dates for the 2026 Secret Roller Disco Summer Schedule">
</div>
<div class="section">
<img src="images/least-secret-disco.png" class="img-fluid" alt="Portland’s least secret Secret Roller Disco!">
</div>
<div class="section">
<img src="images/logo-eye.png" class="img-fluid" alt="Secret Roller Disco logo with an eye ball in inside a disco ball inside a triangle.">
</div>
<!-- <div class="section">
<img src="images/logo-pef.png" class="img-fluid" alt="Portland Events & Film Logo">
<p>Portland Events and Film is proud to support events that celebrate our city, build community, and represent the diversity of Portland’s creative talent, businesses, and communities.</p>
</div>
<div class="section">
<img src="images/logo-racc.png" class="img-fluid" alt="Regional Arts & Culture Council Logo">
<p>These events made possible by public arts funding from Regional Arts & Culture Council (RACC) who envision a community that supports, participates, and finds joy in arts and culture, not just for those who can afford to pay.</p>
</div> -->
</div>
</div>