create events page

This commit is contained in:
Aadil Ayub 2022-09-27 17:35:53 +05:00
parent 891fb57733
commit ca0f7ce07c
4 changed files with 80 additions and 2 deletions

View File

@ -6,7 +6,7 @@ theme = "sophie-lewis"
[params]
#navbar = ["about", "writing", "get-in-touch"]
navbar = ["about", "writing", "videos", "get-in-touch"]
navbar = ["about", "writing", "videos", "events", "get-in-touch"]
[params.header]
name = "Sophie Lewis"

53
content/events.html Normal file
View File

@ -0,0 +1,53 @@
---
title: Events
---
<section id="events-listing">
<h1>Upcoming Events</h1>
<ul class="events-list">
<li class="past-event">
<p class="event-title">Parapraxis seminar, online (Zoom) with M.E. OBrien</p>
<small>28 Aug 2022 (Sun) 1pm </small>
</li class="past-event">
<li class="past-event">
<p class="event-title">Abolish the Family Socialism conference, Chicago with Rosie Warren</p>
<small>4 Sep 2022 (Sun) 7pm CST</small>
</li class="past-event">
<li class="past-event">
<p class="event-title">Lecture, CSWGS, Rice University, Houston, Texas (live-streamed)</p>
<small>22 Sep 2022 (Thurs) 5:30pm CST</small>
</li>
<li>
<p class="event-title">Lecture, Fisher Center, Hobart & William Smith Colleges, Geneva, NY</p>
<small>28 Sep 2022 (Wed) 7pm EST</small>
</li>
<li>
<p class="event-title">7pm Abolish the Family launch LRB Bookshop with Lola Olufemi </p>
<small>4 Oct 2022 (Tues) 7pm</small>
</li>
<li>
<p class="event-title">Lecture on mothering against motherhood at Gropius Bau, Berlin</p>
<small>7-8 Oct 2022 (Fri-Sat)</small>
</li>
<li>
<p class="event-title">Abolish the Family seminar, ISJPS, Sorbonne, Paris.</p>
<small>14 Oct 2022 (Fri) 2pm CET</small>
</li>
<li>
<p class="event-title">Jindřich Chalupecký Society (SJCH) curatorial collective, Display, Prague</p>
<small>15-16 Oct 2022 (Sat-Sun)</small>
</li>
<li>
<p class="event-title">University of Pittsburgh</p>
<small>1 Dec 2022 (Thur)</small>
</li>
</ul>
</section>

File diff suppressed because one or more lines are too long

View File

@ -269,3 +269,28 @@ footer {
display: none;
}
}
/* EVENTS PAGE STYLES
====================== */
#events-listing {
h1 {
margin-bottom: 1em;
font-weight: 600;
font-size: 21px;
}
.events-list {
li {
margin-bottom: 1rem;
&.past-event { opacity: 0.5; }
.event-title {
padding-bottom: 0;
font-weight: bold;
}
small { font-weight: normal;}
}
}
}