Add /events/[year] page #151
No reviewers
Labels
No Label
a11y
Backlog
Blocked
Bug
Content
Dependencies
Design
Feature Request
Good First Issue
In Progress
Performance
Priority - High
Priority - Low
Priority - Medium
Untriaged
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: www/www-new#151
Loading…
Reference in New Issue
No description provided.
Delete Branch "feat/events-year"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #112
WIP: Add /events/[year] pageto Add /events/[year] pageCan you add all the events in a separate PR? I can't see the actual changes right now.
OK, see !157. I've added the
content/events
folder so that I could pass build, and also addedcontent/events/2021
for testing and demonstration purposes.Most comments on #158 apply here too.
@ -0,0 +2,4 @@
margin: auto;
margin-top: calc(112rem / 16);
margin-bottom: calc(224rem / 16);
width: calc(800rem / 16);
no need, DefaultLayout already handles this.
@ -0,0 +1,26 @@
.main {
margin: auto;
no need, just set top and bottom
@ -0,0 +1,26 @@
.main {
margin: auto;
margin-top: calc(112rem / 16);
reduce this for mobile styles
I eyeballed with 112rem/48px for desktop/mobile's
margin-top
. I measured in Figma and I believe it says 157px/70px, however trying those values the spacing seemed off. Let me know if you want that changed.(oops, also if you get like 12 notifications for this, sorry. I may have spammed the reply button after my wifi flipped out 😣)
Just 60px for both mobile and desktop should be good
@ -0,0 +1,26 @@
.main {
margin: auto;
margin-top: calc(112rem / 16);
margin-bottom: calc(224rem / 16);
no need.
@ -0,0 +5,4 @@
width: calc(800rem / 16);
}
.heading2 {
no need.
@ -0,0 +14,4 @@
color: var(--primary-accent)
}
.links {
Please look at how this is done in news archive and copy from there
Can you delete the .gitkeep files?
@ -0,0 +9,4 @@
@media only screen and (max-width: calc(768rem / 16)) {
.main {
margin-top: calc(60rem / 16);
no need
@ -0,0 +4,4 @@
.main > h2 {
padding-bottom: 1rem;
border-bottom: 1px solid var(--primary-heading);
calc(1rem / 16)
LGTM after the 3 comments above!