From d1ae47270c1b35a637c74b8609caf4a46bbd5aeb Mon Sep 17 00:00:00 2001 From: Matthew <2565361+mshafer1@users.noreply.github.com> Date: Fri, 28 Feb 2020 20:13:15 -0600 Subject: [PATCH 1/2] add version number to index --- _config.yml | 1 + index.html | 3 +++ 2 files changed, 4 insertions(+) diff --git a/_config.yml b/_config.yml index 8f04a39..5457f5c 100644 --- a/_config.yml +++ b/_config.yml @@ -3,3 +3,4 @@ title: FRC 6321 Scouting short_title: FRC Scouting logo: images/site_logo.png +version: 0.8.1 diff --git a/index.html b/index.html index 583e9b1..2310bf1 100644 --- a/index.html +++ b/index.html @@ -14,4 +14,7 @@



● Go to the Importing and Exporting Data page to import/export currently stored data in the Season Configuration page, the Event Data page, and the Team Data page.

+ +
+

Release: {{ site.version }}

\ No newline at end of file From f30ebabe95beba51e676415d371fc5a705d2b334 Mon Sep 17 00:00:00 2001 From: Matthew <2565361+mshafer1@users.noreply.github.com> Date: Fri, 28 Feb 2020 20:13:31 -0600 Subject: [PATCH 2/2] fit page to screen if needed --- _layouts/basic.html | 2 +- styles.css | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/_layouts/basic.html b/_layouts/basic.html index 2a80887..8fba365 100644 --- a/_layouts/basic.html +++ b/_layouts/basic.html @@ -2,7 +2,7 @@ {% include head.html %} - + {% include nav.html %} {{ content }} diff --git a/styles.css b/styles.css index 11662c8..50ab291 100644 --- a/styles.css +++ b/styles.css @@ -4,10 +4,19 @@ background-image: url('images/background.jpg'); } -html body +html, body { font-family: 'Ubuntu'; color: maroon; + margin: 5px; +} + +html { + height: 95%; +} + +body { + min-height: 90%; } code