Skip to content

Commit

Permalink
Docs (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkrusch authored Aug 13, 2023
1 parent 123d564 commit db06fe9
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 14 deletions.
10 changes: 9 additions & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ markdown: kramdown
remote_theme: the-au-forml-lab/the-au-forml-lab.github.io
baseurl: "/plgroup"

plugins:
- jekyll-feed
- jekyll-sitemap

defaults:
- scope:
path: ""
Expand All @@ -18,9 +22,13 @@ defaults:
collections:
past_semesters:
output: true
permalink: /:path

exclude:
- Gemfile
- /*/papers.md
- /*/awards.md
- next.md
- papers.md
- Gemfile
- awards.md
- readme.md
12 changes: 7 additions & 5 deletions docs/_includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ "/assets/main.css" | absolute_url }}">
<script src="{{ "/assets/javascript/bootstrap/jquery.min.js" | absolute_url }}"></script>
<script src="{{ "/assets/javascript/bootstrap/bootstrap.bundle.min.js" | absolute_url }}"></script>
<link rel="icon" type="image/png" href="{{ "/images/index.png" | absolute_url }}" />
<link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">
{%- seo -%}
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
{%- feed_meta -%}
<script src="{{ "/assets/javascript/bootstrap/jquery.min.js" | relative_url }}"></script>
<script src="{{ "/assets/javascript/bootstrap/bootstrap.bundle.min.js" | relative_url }}"></script>
<link rel="icon" type="image/png" href="{{ "/images/index.png" | relative_url }}" />
<!--[if IE]><link rel="shortcut icon" type="image/x-icon" href="{{ "/images/favicon.ico" | relative_url }}" /><![endif]-->
</head>
File renamed without changes.
4 changes: 0 additions & 4 deletions docs/_includes/menu.html

This file was deleted.

2 changes: 2 additions & 0 deletions docs/_includes/page_header.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">

<header>
<h1 class="h1 mb-5">
Programming Languages Reading Group
Expand Down
2 changes: 2 additions & 0 deletions docs/_includes/render_awards.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% if page.awards %}
{% capture awards %}{% include_relative awards.md %}{% endcapture %}
{% if awards != '' %}
<section>
Expand All @@ -6,4 +7,5 @@ <h3>Awards</h3>
{{ awards | markdownify }}
</div>
</section>
{% endif %}
{% endif %}
2 changes: 2 additions & 0 deletions docs/_layouts/current.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

{%- include render_papers.html -%}

{%- include render_awards.html -%}

{%- include semesters.html -%}

</article>
4 changes: 1 addition & 3 deletions docs/_layouts/semester.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
layout: default
---

{%- include bread.html -%}

{%- include page_header.html -%}

<article class="mb-5">
Expand All @@ -16,4 +14,4 @@

</article>

{%- include bread.html -%}
{%- include home.html -%}
1 change: 1 addition & 0 deletions docs/_past_semesters/2023_spring/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
semester: Spring
year: 2023
awards: true
---

Augusta University Programming Languages (PL) Reading Group is a regular meeting to discuss exciting recent results in programming languages research.
Expand Down
Binary file removed docs/images/AU-logo.png
Binary file not shown.
Binary file removed docs/images/SCCS-logo.png
Binary file not shown.
Binary file removed docs/images/favicon.ico
Binary file not shown.
Binary file removed docs/images/index.png
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/next.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@

~* coming soon *~
1 change: 1 addition & 0 deletions docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ YEAR=2023 && SEM=fall \
&& mkdir $OLD_DIR \
&& cp index.md $OLD_DIR"/index.md" \
&& mv papers.md $OLD_DIR"/papers.md" \
&& [ ! -f awards.md ] || mv awards.md $OLD_DIR"/awards.md" \
&& echo '' > next.md \
&& touch papers.md
````
Expand Down

0 comments on commit db06fe9

Please sign in to comment.