mirror of https://github.com/nate2014jatc/AGSTATUS
Compare commits
No commits in common. "5f698a295077ad43dc6260a553aa27714aacf826" and "e98aa4aeba66f20dfd1eddcb8528d671d5c350be" have entirely different histories.
5f698a2950
...
e98aa4aeba
|
@ -1,7 +1,7 @@
|
||||||
# Welcome to Jekyll!
|
# Welcome to Jekyll!
|
||||||
title: Astragroup Status Updates
|
title: Astragroup Status Updates
|
||||||
email: admin@astragroup.info
|
email: admin@astragroup.info
|
||||||
description: >-
|
description: >-
|
||||||
A simple micro-blog for status updates relating to various AG services.
|
A simple micro-blog for status updates relating to various AG services.
|
||||||
(Hosting, NextCloud, Gitea, Etc.)
|
(Hosting, NextCloud, Gitea, Etc.)
|
||||||
baseurl: ""
|
baseurl: ""
|
||||||
|
@ -19,4 +19,4 @@ encoding: utf-8
|
||||||
livereload: true
|
livereload: true
|
||||||
livereload_min_delay: 60
|
livereload_min_delay: 60
|
||||||
livereload_max_delay: 600
|
livereload_max_delay: 600
|
||||||
author: "Rax Ventus"
|
author: "Nate B."
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
Rax Ventus:
|
|
||||||
image: rax_round.png
|
|
||||||
bio: Intentionally Left Blank, for testing purposes.
|
|
||||||
socials:
|
|
||||||
- type: Twitter
|
|
||||||
url: https://twitter.com/raxventus
|
|
||||||
- type: GitTea
|
|
||||||
url: https://git.astragroup.info/rax
|
|
|
@ -1,51 +0,0 @@
|
||||||
<!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, initial-scale=1">
|
|
||||||
<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="/authorblurb.css">
|
|
||||||
<link rel="icon" type="image/png" href="/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>
|
|
||||||
|
|
||||||
<section id="downloads">
|
|
||||||
{% if site.show_downloads %}
|
|
||||||
<a href="{{ site.github.zip_url }}" class="btn">Download as .zip</a>
|
|
||||||
<a href="{{ site.github.tar_url }}" class="btn">Download as .tar.gz</a>
|
|
||||||
{% endif %}
|
|
||||||
<a href="{{ site.github.repository_url }}" class="btn btn-github" target="_blank"><span class="icon"></span>View on GitHub</a>
|
|
||||||
</section>
|
|
||||||
</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>
|
|
|
@ -1,27 +0,0 @@
|
||||||
---
|
|
||||||
layout: default
|
|
||||||
---
|
|
||||||
<!-- <link rel="stylesheet" href="/authorblurb.css"> -->
|
|
||||||
<small>{{ page.date | date: "%-d %B %Y" }}</small>
|
|
||||||
<h1>{{ page.title }}</h1>
|
|
||||||
|
|
||||||
<p class="view">by {{ page.author | default: site.author }}</p>
|
|
||||||
|
|
||||||
{{content}}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
{% assign authorData = site.data.authors[site.author] %}
|
|
||||||
|
|
||||||
<div class="author-bio">
|
|
||||||
<img src="/img/{{ authorData.image }}" alt="{{ page.author }}'s profile picture." />
|
|
||||||
<div class="author-name">{{ site.author }}</div>
|
|
||||||
<p class="bio">{{ authorData.bio }}</p>
|
|
||||||
{% for social in authorData.socials %}
|
|
||||||
<a href="{{ social.url }}" class="social-link">{{ social.type }}</a>
|
|
||||||
<br>
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
<h5>Site Last Updated: {{ site.time | date: "%m/%d/%Y %H:%M" }}</h5>
|
|
|
@ -15,3 +15,4 @@ date: 2020-11-06 00:59
|
||||||
## These resources will go down no earlier than 2020-11-06 10:00.
|
## These resources will go down no earlier than 2020-11-06 10:00.
|
||||||
|
|
||||||
This planned outage is needed to reconfigure hardware in the physical machine that is hosting the above mentioned resources.
|
This planned outage is needed to reconfigure hardware in the physical machine that is hosting the above mentioned resources.
|
||||||
|
|
||||||
|
|
|
@ -6,3 +6,4 @@ date: 2020-11-14 22:38
|
||||||
---
|
---
|
||||||
Planned service outage on 2020-11-15 02:30.
|
Planned service outage on 2020-11-15 02:30.
|
||||||
The network will be down for re-organization.
|
The network will be down for re-organization.
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
---
|
|
||||||
layout: post
|
|
||||||
title: Service Update
|
|
||||||
published: true
|
|
||||||
date: 2020-11-15 03:30
|
|
||||||
---
|
|
||||||
Network is back up.
|
|
||||||
Thanks for your patience, the closets desperately needed cleaning.
|
|
|
@ -1,18 +0,0 @@
|
||||||
.author-bio {
|
|
||||||
width: 50%;
|
|
||||||
float: right;
|
|
||||||
border-radius: 12px;
|
|
||||||
border-width: 3px;
|
|
||||||
border-style: groove;
|
|
||||||
border-color: #0066ff;
|
|
||||||
padding-left: 4px;
|
|
||||||
margin-top: 5%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-bio img {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.author-bio .social-link {
|
|
||||||
padding-left: 8px;
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 12 KiB |
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
<h1>Site Last Updated: {{ site.time | date: "%m/%d/%Y %H:%M" }}</h1>
|
<h1>Last Updated: {{ site.time | date: "%m/%d/%Y %H:%M" }}</h1>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
|
|
Loading…
Reference in New Issue