-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from acep-uaf/dev
Dev merge into Main
- Loading branch information
Showing
24 changed files
with
1,105 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
Types of changes | ||
- **Added** for new features. | ||
- **Changed** for changes in existing functionality. | ||
- **Deprecated** for soon-to-be removed features. | ||
- **Removed** for now removed features. | ||
- **Fixed** for any bug fixes. | ||
- **Security** in case of vulnerabilities. | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
- The 2011-2021 excel workbooks from Neil via Steve. | ||
- Initial structure for the website to present the data and context of the data. | ||
- Add CC-BY-SA 4.0 License | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<!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"> | ||
|
||
{% seo %} | ||
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}"> | ||
<!--[if lt IE 9]> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> | ||
<![endif]--> | ||
{% include head-custom.html %} | ||
</head> | ||
<body> | ||
<div class="wrapper"> | ||
<header> | ||
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1> | ||
|
||
{% if site.logo %} | ||
<img src="{{site.logo | relative_url}}" alt="Logo" /> | ||
{% endif %} | ||
|
||
<p>{{ site.description | default: site.github.project_tagline }}</p> | ||
|
||
{% if site.github.is_project_page %} | ||
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> | ||
{% endif %} | ||
|
||
{% if site.github.is_user_page %} | ||
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p> | ||
{% endif %} | ||
|
||
<h2>Workbook Downloads:</h2> | ||
<p> | ||
<ul> | ||
<li><a href="/workbooks/2011_AK_Energy Statistics.xlsx">Download 2011 Workbook</a></li> | ||
<li><a href="/workbooks/2012_AK_Energy Statistics.xlsx">Download 2012 Workbook</a></li> | ||
<li><a href="/workbooks/2013_AK_Energy Statistics.xlsx">Download 2013 Workbook</a></li> | ||
<li><a href="/workbooks/2014_AK_Energy Statistics.xlsx">Download 2014 Workbook</a></li> | ||
<li><a href="/workbooks/2015_AK_Energy Statistics.xlsx">Download 2015 Workbook</a></li> | ||
<li><a href="/workbooks/2016_AK_Energy Statistics.xlsx">Download 2016 Workbook</a></li> | ||
<li><a href="/workbooks/2017_AK_Energy Statistics.xlsx">Download 2017 Workbook</a></li> | ||
<li><a href="/workbooks/2018_AK_Energy Statistics.xlsx">Download 2018 Workbook</a></li> | ||
<li><a href="/workbooks/2019_AK_Energy Statistics.xlsx">Download 2019 Workbook</a></li> | ||
<li><a href="/workbooks/2020_AK_Energy Statistics.xlsx">Download 2020 Workbook</a></li> | ||
<li><a href="/workbooks/2021_AK_Energy Statistics.xlsx">Download 2021 Workbook</a></li> | ||
</ul> | ||
</p> | ||
|
||
</header> | ||
<section> | ||
|
||
{{ content }} | ||
|
||
</section> | ||
<footer> | ||
<p>Maintained by: <br> | ||
<a href="https://www.uaf.edu/acep/">Alaska Center for Energy and Power</a> <br> | ||
© University of Alaska Fairbanks 2023</p> | ||
</footer> | ||
</div> | ||
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<small>{{ page.date | date: "%-d %B %Y" }}</small> | ||
<h1>{{ page.title }}</h1> | ||
|
||
<p class="view">by {{ page.author | default: site.author }}</p> | ||
|
||
{{content}} | ||
|
||
{% if page.tags %} | ||
<small>tags: <em>{{ page.tags | join: "</em> - <em>" }}</em></small> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
@font-face { | ||
font-family: 'Noto Sans'; | ||
font-weight: 400; | ||
font-style: normal; | ||
src: url('../fonts/Noto-Sans-regular/Noto-Sans-regular.eot'); | ||
src: url('../fonts/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix') format('embedded-opentype'), | ||
local('Noto Sans'), | ||
local('Noto-Sans-regular'), | ||
url('../fonts/Noto-Sans-regular/Noto-Sans-regular.woff2') format('woff2'), | ||
url('../fonts/Noto-Sans-regular/Noto-Sans-regular.woff') format('woff'), | ||
url('../fonts/Noto-Sans-regular/Noto-Sans-regular.ttf') format('truetype'), | ||
url('../fonts/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans') format('svg'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Noto Sans'; | ||
font-weight: 700; | ||
font-style: normal; | ||
src: url('../fonts/Noto-Sans-700/Noto-Sans-700.eot'); | ||
src: url('../fonts/Noto-Sans-700/Noto-Sans-700.eot?#iefix') format('embedded-opentype'), | ||
local('Noto Sans Bold'), | ||
local('Noto-Sans-700'), | ||
url('../fonts/Noto-Sans-700/Noto-Sans-700.woff2') format('woff2'), | ||
url('../fonts/Noto-Sans-700/Noto-Sans-700.woff') format('woff'), | ||
url('../fonts/Noto-Sans-700/Noto-Sans-700.ttf') format('truetype'), | ||
url('../fonts/Noto-Sans-700/Noto-Sans-700.svg#NotoSans') format('svg'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Noto Sans'; | ||
font-weight: 400; | ||
font-style: italic; | ||
src: url('../fonts/Noto-Sans-italic/Noto-Sans-italic.eot'); | ||
src: url('../fonts/Noto-Sans-italic/Noto-Sans-italic.eot?#iefix') format('embedded-opentype'), | ||
local('Noto Sans Italic'), | ||
local('Noto-Sans-italic'), | ||
url('../fonts/Noto-Sans-italic/Noto-Sans-italic.woff2') format('woff2'), | ||
url('../fonts/Noto-Sans-italic/Noto-Sans-italic.woff') format('woff'), | ||
url('../fonts/Noto-Sans-italic/Noto-Sans-italic.ttf') format('truetype'), | ||
url('../fonts/Noto-Sans-italic/Noto-Sans-italic.svg#NotoSans') format('svg'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Noto Sans'; | ||
font-weight: 700; | ||
font-style: italic; | ||
src: url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot'); | ||
src: url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot?#iefix') format('embedded-opentype'), | ||
local('Noto Sans Bold Italic'), | ||
local('Noto-Sans-700italic'), | ||
url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2') format('woff2'), | ||
url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff') format('woff'), | ||
url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf') format('truetype'), | ||
url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg#NotoSans') format('svg'); | ||
} |
Oops, something went wrong.