Skip to content

Commit 03bf535

Browse files
committed
initial checkin of site content
1 parent 998d545 commit 03bf535

20 files changed

+985
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
_site/
22
.sass-cache/
33
.jekyll-metadata
4+
5+
.DS_Store
6+

GemFile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages'
3+

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
# power-grid-lib.github.io
2-
ieee pes power grid lib organization website http://power-grid-lib.github.io
2+
3+
This repository contains the source files for compiling the website for the IEEE PES Task Force on Benchmarks for Validation of Emerging Power System Algorithms which is hosted at http://power-grid-lib.github.io.
4+
5+
The website build can be tested locally using,
6+
```
7+
jekyll build
8+
```

_config.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Site settings
2+
title: Power Grid Lib, A Library of IEEE PES Benchmarks for Validation of Power System Algorithms
3+
4+
description: > # this means to ignore newlines until "baseurl:"
5+
This website discribes Power Grid Lib, a library of offical IEEE PES benchmarks for validation of power system algorithms.
6+
This library is administrated by the IEEE PES Task Force on Benchmarks for Validation of Emerging Power System Algorithms.
7+
baseurl: "" # the subpath of your site, e.g. /blog/
8+
#url: "http://yourdomain.com" # the base hostname & protocol for your site
9+
#twitter_username: jekyllrb
10+
#github_username: jekyll
11+
12+
# Build settings
13+
markdown: kramdown

_data/config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
display_title: Power Gird Lib
2+
display_tagline: Benchmarks for Validation of Emerging Power System Algorithms
3+
github_repo_id: power-grid-lib
4+
download_zip:
5+
download_tar:
6+
admin_name: Carleton Coffrin
7+
admin_email: carleton [at] coffrin [dot] com
8+
admin_github_username: ccoffrin

_includes/banner.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<div id="header_wrap" class="outer">
2+
<header class="inner">
3+
<a id="forkme_banner" href="https://github.com/{{site.data.config.github_repo_id}}">View on GitHub</a>
4+
5+
<h1 id="project_title">{{ site.data.config.display_title }}</h1>
6+
<h2 id="project_tagline">{{ site.data.config.display_tagline }}</h2>
7+
8+
{% if site.data.config.download_zip and site.data.config.download_tar %}
9+
<section id="downloads">
10+
<a class="zip_download_link" href="site.data.config.download_zip">Download this project as a .zip file</a>
11+
<a class="tar_download_link" href="site.data.config.download_tar">Download this project as a tar.gz file</a>
12+
</section>
13+
{% endif %}
14+
</header>
15+
</div>

_includes/footer.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<div id="footer_wrap" class="outer">
2+
<footer class="inner">
3+
4+
<h5 style="color:#fff">Power Grid Lib Administrator</h5>
5+
<p> <a href="https://github.com/{{site.data.config.admin_github_username}}">{{site.data.config.admin_name}}</a>
6+
- {{site.data.config.admin_email}} <br/>
7+
</p>
8+
9+
<script>
10+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
11+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
12+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
13+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
14+
15+
ga('create', 'UA-72209330-2', 'auto');
16+
ga('send', 'pageview');
17+
18+
</script>
19+
20+
</footer>
21+
</div>

_includes/head.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta name="viewport" content="width=device-width initial-scale=1" />
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
6+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
<meta name="description" content="{{ site.description }}">
8+
9+
<link rel="stylesheet" type="text/css" media="screen" href="{{ "/stylesheets/stylesheet.css" | prepend: site.baseurl }}">
10+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
11+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
12+
13+
</head>

_includes/logo.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<img width="100px" src="{{ site.url }}/images/logo.png" alt="Logo for the IEEE PES Prower Grid Benchmark Library"/>

_layouts/default.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include banner.html %}
9+
10+
<div id="main_content_wrap" class="outer">
11+
<section id="main_content" class="inner">
12+
{{ content }}
13+
</section>
14+
</div>
15+
16+
{% include footer.html %}
17+
18+
</body>
19+
20+
</html>

_layouts/page.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
6+
<header class="post-header">
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
</header>
9+
10+
<article class="post-content">
11+
{{ content }}
12+
</article>
13+
14+
</div>

images/bg_hr.png

943 Bytes
Loading

images/blacktocat.png

1.39 KB
Loading

images/icon_download.png

1.13 KB
Loading

images/logo.png

398 KB
Loading

images/sprite_download.png

16.4 KB
Loading

index.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
---
4+
5+
### Introduction
6+
7+
Welcome to the official website for the **Task Force on Benchmarks for Validation of Emerging Power System Algorithms** of the [IEEE Power and Energy Society](http://www.ieee-pes.org/).
8+
The primary activity of this task force is to curate and maintain [Power Grid Lib](https://github.com/power-grid-lib); a collection of git repositories containing benchmarks for validation of power system algorithms in a variety of application domains.
9+
10+
11+
To get involved contact the administrator, [{{site.data.config.admin_name}}](https://github.com/{{site.data.config.admin_github_username}}).
12+

0 commit comments

Comments
 (0)