mirror of https://github.com/nate2014jatc/AGSTATUS
7 changed files with 104 additions and 10 deletions
@ -0,0 +1,40 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="{{ site.lang | default: "en-US" }}"> |
|||
<head> |
|||
<meta charset='utf-8'> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"> |
|||
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}"> |
|||
<meta name="theme-color" content="#0066ff"> |
|||
<link rel="stylesheet" href="/assets/authorblurb.css"> |
|||
<link rel="stylesheet" href="/assets/additionalCSS.css" |
|||
<link rel="icon" type="image/png" href="/assets/img/rax_round.png"> |
|||
{% seo %} |
|||
</head> |
|||
<body> |
|||
<header> |
|||
<div class="container"> |
|||
<a id="a-title" href="{{ '/' | relative_url }}"> |
|||
<h1>{{ site.title | default: site.github.repository_name }}</h1> |
|||
</a> |
|||
<h2>{{ site.description | default: site.github.project_tagline }}</h2> |
|||
</div> |
|||
</header> |
|||
<div class="container"> |
|||
<section id="main_content"> |
|||
{{ content }} |
|||
</section> |
|||
</div> |
|||
|
|||
{% if site.google_analytics %} |
|||
<script> |
|||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
|||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), |
|||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) |
|||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
|||
ga('create', '{{ site.google_analytics }}', 'auto'); |
|||
ga('send', 'pageview'); |
|||
</script> |
|||
{% endif %} |
|||
</body> |
|||
</html> |
@ -0,0 +1,17 @@ |
|||
$apple-blossom: #ac4142; |
|||
$alto: #d0d0d0; |
|||
$bouquet: #aa759f; |
|||
$chelsea-cucumber: #90a959; |
|||
$cod-grey: #151515; |
|||
$conifer: #b5e853; |
|||
$dove-grey: #666; |
|||
$gallery: #eaeaea; |
|||
$grey: #888; |
|||
$gulf-stream: #75b5aa; |
|||
$hippie-blue: #6a9fb5; |
|||
$potters-clay: #8f5536; |
|||
$rajah: #f4bf75; |
|||
$raw-sienna: #d28445; |
|||
$silver-chalice: #aaa; |
|||
$ag-blue: #00bbc4; |
|||
$ag-orange: #d38700; |
@ -0,0 +1,30 @@ |
|||
--- |
|||
layout: simple |
|||
--- |
|||
|
|||
<center><p class="updated">Site Last Updated: {{ site.time | date: "%m/%d/%Y %H:%M" }}</p></center> |
|||
<br> |
|||
<h1>Latest:</h1> |
|||
<ul> |
|||
{% for post in site.posts limit:1 %} |
|||
<a href="{{ post.url}}"> |
|||
<h2>{{ post.title }}</h2> |
|||
<p>{{ post.date | date: "%m/%d/%Y %H:%M"}}</p> |
|||
<p>{{ page.excerpt | truncate_words: 5 }}</p> |
|||
</a> |
|||
{% endfor %} |
|||
</ul> |
|||
<hr> |
|||
<hr> |
|||
<hr> |
|||
<h1>Earlier:</h1> |
|||
<ul> |
|||
{% for post in site.posts offset:1 limit:5 %} |
|||
<a href="{{ post.url }}"> |
|||
<h2>{{ post.title }}</h2> |
|||
<p>{{ post.date | date: "%m/%d/%Y %H:%M"}}</p> |
|||
<p>{{ page.excerpt | truncate_words: 5 }}</p> |
|||
</a> |
|||
<hr> |
|||
{% endfor %} |
|||
</ul> |
Loading…
Reference in new issue