Skip to content

Commit

Permalink
add distinct homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthAV committed Nov 5, 2024
1 parent ad08b9f commit b0f2ca9
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 28 deletions.
32 changes: 6 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
---
layout: home
title: Home
nav_exclude: true
permalink: /:path/
seo:
type: Course
name: {{ site.title }}
---

# {{site.title}}
# Sigtricity

Welcome to the ACM@UIUC Sigtricity website!

# Development Guide

This repository is a GitHub Pages template developed for the purpose of quickly deploying SIG websites. In addition to serving plain web pages and files, it provides a boilerplate for:

- [announcements](announcements.md),
Expand All @@ -22,21 +17,6 @@ This template that extends the popular [Just the Docs](https://github.com/just-t
- instant, full-text [search](https://just-the-docs.github.io/just-the-docs/docs/search/) and page indexing,
- and a set of [UI components](https://just-the-docs.github.io/just-the-docs/docs/ui-components) and authoring [utilities](https://just-the-docs.github.io/just-the-docs/docs/utilities).

# Recent Announcements

{% assign announcements = site.announcements | reverse %}
{% assign announcement_count = announcements | size %}

<div class="announcements-list">
{% for announcement in announcements limit:5 %}
{{ announcement }}
{% endfor %}
</div>

{% if announcement_count > 5 %}
<a href="/announcements" class="see-all-link">See All Announcements</a>
{% endif %}

## Getting Started

Getting started with the ACM SIG template is simple.
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# you will see them accessed via {{ site.title }}, {{ site.github_repo }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: SIGtricity
title: Sigtricity
tagline: A group focused on making electrical engineering concepts available to everyone.
description:
author: Noah Rockoff
Expand Down
2 changes: 1 addition & 1 deletion about.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: page
title: About Us
description: >-
About Us page for SIGtricity
About Us page for Sigtricity
---

# About Us
Expand Down
28 changes: 28 additions & 0 deletions home.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
layout: home
title: Home
nav_exclude: true
permalink: /:path/
seo:
type: Course
name: {{ site.title }}
---

# {{site.title}}



# Recent Announcements

{% assign announcements = site.announcements | reverse %}
{% assign announcement_count = announcements | size %}

<div class="announcements-list">
{% for announcement in announcements limit:5 %}
{{ announcement }}
{% endfor %}
</div>

{% if announcement_count > 5 %}
<a href="/announcements" class="see-all-link">See All Announcements</a>
{% endif %}

0 comments on commit b0f2ca9

Please sign in to comment.