Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minutes #384

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions assets/scss/components/_footer.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.footer {
background-color: black;
height: 15vh;
height: 24vh;
color: white;
display: flex;
flex-direction: column;
Expand All @@ -18,5 +18,16 @@
justify-content: space-between;
width: 14rem;
font-size: 1.5rem;
margin-bottom: 1.2rem;
margin-bottom: 0.6rem;
margin-top: 0.1rem;
// this margin just makes the spacing look better
// can probs play around with it more
}

.footer-text {
text-align: center;
font-size: 1rem;
b {
font-size: 1.25rem;
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "Minutes"
title: "Meetings"
date: 2020-01-26T23:11:13Z
draft: false
layout: meetings
---
Minutes
2 changes: 0 additions & 2 deletions data/faq.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
- question: "How do I join the Carleton Computer Science Society?"
answer: "The Carleton Computer Science Society represents all students within Carleton's Computer Science programs. That means that if you're in CS, you're already a member!"
- question: "Will there be in person events in the 2022–2023 academic year?"
answer: "Yes! We will be operating both in person and online during the Fall 2022 academic term."
- question: "Is the CCSS an official Carleton club / society?"
answer: "The CCSS is recognized and funded by the School of Computer Science, however, it is not registered as a CUSA club or society."
- question: "Can I attend events if I'm not a Computer Science student?"
Expand Down
11 changes: 11 additions & 0 deletions data/meetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
- year: 2023-2024
meetings:
- date: Oct. 14
link: https://docs.google.com/document/d/1qVIFhxA3vTRs9ai4HQckyXvPA00BygVUrkPi-RfpxjE/edit
- date: Nov. 25
link: https://docs.google.com/document/d/1qVIFhxA3vTRs9ai4HQckyXvPA00BygVUrkPi-RfpxjE/edit
- year: 2022-2023
meetings:
- date: Nov. 23
link: https://docs.google.com/document/d/1qVIFhxA3vTRs9ai4HQckyXvPA00BygVUrkPi-RfpxjE/edit

14 changes: 14 additions & 0 deletions layouts/_default/meetings.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{{ define "main" }}
{{- partial "navbar_temp.html" . -}}
{{ range $.Site.Data.meetings }}
<h1 style="text-align: center;">{{ .year }}</h1>
<hr />
<div id="team_flex_box" class="past">
<ul>
{{ range .meetings }}
<li><a href="{{ .link }}">{{ .date }}</a></li>
{{ end }}
</ul>
</div>
{{ end }}
{{ end }}
9 changes: 9 additions & 0 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
<div class="footer">
<div class="footer-text">
<p>
<b>Carleton Computer Science Society</b><br />
4135 Herzberg Laboratories<br />
1125 Colonel By Drive,<br />
Ottawa, ON K1S 5B6<br /><br />
email: <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="footer-socials">
<a href="http://discord.carletoncomputersciencesociety.ca"
><i class="fab fa-discord"></i
Expand Down