Skip to content

Commit

Permalink
Merge pull request #1 from TPAFS/add_theme
Browse files Browse the repository at this point in the history
Update theming
  • Loading branch information
MikeG112 authored Aug 22, 2023
2 parents 1e3276d + 4406c55 commit 976a24a
Show file tree
Hide file tree
Showing 11 changed files with 1,096 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Gemfile.lock
_site/*
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# frozen_string_literal: true

source "https://rubygems.org"

gem "github-pages", group: :jekyll_plugins
gem "webrick"
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# tpafs.github.io
Organization repo for Persius.
# Persius Github Repositories

This repository serves as a landing page from which one can navigate all of the public
repositories and static sites maintained by Persius on Github.
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
theme: jekyll-theme-cayman
title: Persius Public Repositories
33 changes: 33 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="UTF-8">

{% seo %}
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" as="style" type="text/css" crossorigin>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#8f5e77">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
{% include head-custom.html %}
</head>
<body>
<a id="skip-to-content" href="#content">Skip to the content.</a>

<header class="page-header" role="banner">
<h1 class="project-name">{{ page.title | default: site.title }}</h1>
<h2 class="project-tagline">{{ page.description }}</h2>
</header>

<main id="content" class="main-content" role="main">
{{ content }}

<footer class="site-footer">
{% if site.github.is_project_page %}
<span class="site-footer-owner">This site is maintained by <a href="{{ site.github.owner_url }}">Persius</a>.</span>
{% endif %}
</footer>
</main>
</body>
</html>
Loading

0 comments on commit 976a24a

Please sign in to comment.