Skip to content

Commit

Permalink
Making some use of GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
bielawb committed Jul 21, 2018
1 parent bdfc5d7 commit 2caae1b
Show file tree
Hide file tree
Showing 6 changed files with 553 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## PowerShell Module: EWS

# PowerShell Module: EWS
![Image](https://raw.githubusercontent.com/bielawb/EWS/master/EWSModuleLogo.png)

EWS (Exchange Web Services) is a convenient way to manage mailboxes:
Expand All @@ -11,7 +12,7 @@ That way user can use familiar syntax when communicating with her/his Exchange r

This module is far from being feature-complete, but it should be a good starting point.

## TODO
# TODO
Apart from extending functionality, there are few serious problems that need to be addressed first:
1. Testing (see #3)
2. Help - basic version created for existing commands (see #2)
Expand Down
7 changes: 6 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
theme: jekyll-theme-minimal
theme: jekyll-theme-architect
twitter:
username: bielawb
logo: /EWSModuleLogo.png
plugins:
- directory
73 changes: 73 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!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, maximum-scale=1">
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}" media="screen" type="text/css">
<link rel="stylesheet" href="{{ '/assets/css/print.css' | relative_url }}" media="print" type="text/css">

<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

{% seo %}
</head>

<body>
<header>
<div class="inner">
<a href="{{ '/' | absolute_url }}">
<h1>{{ site.title | default: site.github.repository_name }}</h1>
</a>
<h2>{{ site.description | default: site.github.project_tagline }}</h2>
{% if site.github.is_project_page %}
<a href="{{ site.github.repository_url }}" class="button"><small>View project on</small> GitHub</a>
{% endif %}
{% if site.github.is_user_page %}
<a href="{{ site.github.owner_url }}" class="button"><small>Follow me on</small> GitHub</a>
{% endif %}
</div>
</header>

<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
{{ content }}
</section>

<aside id="sidebar">
<a href="{{ site.baseurl }}" class="button">Home</a>
<a href="{{ site.github.repository_url }}" class="button" target="_blank">Repository</a>
<a href="https://www.powershellgallery.com/packages/EWS" class="button" target="_blank">EWS in PSGallery</a>
{% for page in site.pages %}
{% if page.path contains 'docs' %}
{% if page.path contains 'about_' %}
<a href="{{ site.baseurl }}/{{ page.path | replace: ".md", ".html" }}" class="button">ABOUT: {{ page.title}}</a>
{% else %}
<a href="{{ site.baseurl }}/{{ page.path | replace: ".md", ".html" }}" class="button">{{ page.title}}</a>
{% endif %}
{% endif %}
{% endfor %}

{% if site.github.is_project_page %}
<p class="repo-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</p>
{% endif %}

<p>This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</p>
</aside>
</div>
</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>
Loading

0 comments on commit 2caae1b

Please sign in to comment.