Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/the-au-forml-lab/plgroup in…
Browse files Browse the repository at this point in the history
…to paper-vote-3
  • Loading branch information
nkrusch committed Jan 29, 2025
2 parents c507ca5 + d94d1ae commit e51d83e
Show file tree
Hide file tree
Showing 116 changed files with 257 additions and 7,967 deletions.
1 change: 1 addition & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
title: Programming Languages Reading Group
short_title: PL Reading Group
description: Augusta University Programming Languages Reading Group
markdown: kramdown
baseurl: "/plgroup"
Expand Down
File renamed without changes.
7 changes: 0 additions & 7 deletions docs/_includes/footer.html

This file was deleted.

11 changes: 0 additions & 11 deletions docs/_includes/head.html

This file was deleted.

7 changes: 0 additions & 7 deletions docs/_includes/header.html

This file was deleted.

15 changes: 9 additions & 6 deletions docs/_includes/jumbo_header.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<div class="jumbotron">
{%- include page_header.html -%}
<hr class="my-4">
<section>
{{ content }}
</section>
<div class="px-md-5 py-md-5 py-3 px-2 mb-4 bg-body-secondary rounded-3"
style="background: linear-gradient(to bottom, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), linear-gradient(33deg, rgba(255, 255, 255, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%); background-blend-mode: normal, color-burn;">
<div class="container-fluid">
{%- include semester_head.html -%}
<hr class="mb-4">
<section>
{{ content }}
</section>
</div>
</div>
22 changes: 0 additions & 22 deletions docs/_includes/mathjax.html

This file was deleted.

35 changes: 35 additions & 0 deletions docs/_includes/navbar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page"
href="{{site.baseurl}}/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page"
href="{{site.baseurl}}/policies">Policies</a>
</li>
<li class="nav-item">
<a class="nav-link active"
target="_blank"
href="https://github.com/the-au-forml-lab/plgroup">Source code</a>
</li>
<li class="nav-item">
<a class="nav-link active"
target="_blank"
href="https://augusta.presence.io/organization/delta-lambda-delta">Student Org</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#"
role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Archive
</a>
<ul class="dropdown-menu">
{% for sem in site.past_semesters %}
<li><a class="dropdown-item"
href="{{site.baseurl}}{{ sem.url | relative_path }}">
{{ sem.semester }} {{ sem.year }}
</a></li>
{% endfor %}
</ul>
</li>
</ul>
3 changes: 0 additions & 3 deletions docs/_includes/page_header.html

This file was deleted.

File renamed without changes.
5 changes: 5 additions & 0 deletions docs/_includes/semester_head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<header>
<h1 class="mb-4">
{{ page.semester | escape }} {{ page.year | escape }} Reading Group
</h1>
</header>
20 changes: 0 additions & 20 deletions docs/_includes/semesters.html

This file was deleted.

9 changes: 2 additions & 7 deletions docs/_layouts/current.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@
layout: default
---

<link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">

{%- include jumbo_header.html -%}

<article class="mb-5">

{%- include render_papers.html -%}

{%- include render_awards.html -%}

{%- include papers.html -%}
{%- include awards.html -%}
</article>
82 changes: 67 additions & 15 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,73 @@
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">

{%- include head.html -%}

<body>

{%- include header.html -%}

<html lang='{{ page.lang | default: site.lang | default: "en" }}'>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{%- seo -%}
{%- feed_meta -%}
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous">
<link rel="stylesheet"
href='{{ "/assets/style.css" | relative_url }}'>
<link rel="icon" type="image/png"
href='{{ "/assets/images/index.png" | relative_url }}'/>
</head>
<body>
<div class="container py-4">
<header class="pb-3 mb-0 border-bottom">
<nav class="navbar top navbar-expand-lg">
<a class="navbar-brand" href="#">
<img src='{{ "/assets/images/delta.svg" | relative_url }}'
alt="delta" width="37" height="24">
</a>
<a href="{{site.baseurl}}/"
class="d-flex align-items-center text-body-emphasis text-decoration-none">
<span class="fs-4 d-none d-sm-block">{{ site.title }}</span>
<span class="fs-4 d-block d-sm-none">{{ site.short_title }}</span>
</a>
<button class="navbar-toggler" type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
</header>
<nav class="navbar top navbar-expand-lg">
<div class="container-fluid">
<div class="collapse navbar-collapse"
id="navbarSupportedContent">
{%- include navbar.html -%}
</div>
</div>
</nav>
<div class="py-5">
<div class="container page-content">
{%- include semesters.html -%}
{{ content }}
{%- include semesters.html -%}
</div>
<div class="container page-content">
{{ content }}
</div>
</div>
{%- include footer.html -%}
</div>

</body>
<footer class="border-top text-center py-3">
<div class="container-fluid">
{%- include navbar.html -%}
</div>
<div class="container">
<a href="https://www.augusta.edu/"
title="Augusta University">
<img style="width:172px"
src='{{ "/assets/images/AU-logo.png" | relative_url }}'
alt="Augusta University"></a>
</div>
</footer>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>
11 changes: 6 additions & 5 deletions docs/_layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
layout: default
---

<link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">

{%- include page_header.html -%}
<header class="mb-5">
<h1 class="mb-4">{{ page.title | escape }}</h1>
{% if page.lead %}
<p class="lead">{{ page.lead | escape }}</p>
{% endif %}
</header>

<article class="mb-5">

<section>{{ content }}</section>

</article>
12 changes: 3 additions & 9 deletions docs/_layouts/semester.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,10 @@
layout: default
---

<link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">

{%- include page_header.html -%}
{%- include semester_head.html -%}

<article class="mb-5">

<section>{{ content }}</section>

{%- include render_papers.html -%}

{%- include render_awards.html -%}

{%- include papers.html -%}
{%- include awards.html -%}
</article>
Loading

0 comments on commit e51d83e

Please sign in to comment.