Skip to content

Commit

Permalink
Initial site for Mudrod
Browse files Browse the repository at this point in the history
  • Loading branch information
lewismc committed Aug 18, 2016
1 parent 45da982 commit 7ee4bee
Show file tree
Hide file tree
Showing 38 changed files with 1,671 additions and 0 deletions.
60 changes: 60 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>

* {
line-height: 1.2;
margin: 0;
}

html {
color: #888;
display: table;
font-family: sans-serif;
height: 100%;
text-align: center;
width: 100%;
}

body {
display: table-cell;
vertical-align: middle;
margin: 2em auto;
}

h1 {
color: #555;
font-size: 2em;
font-weight: 400;
}

p {
margin: 0 auto;
width: 280px;
}

@media only screen and (max-width: 280px) {

body, p {
width: 95%;
}

h1 {
font-size: 1.5em;
margin: 0 0 0.3em;
}

}

</style>
</head>
<body>
<h1>Page Not Found</h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
</body>
</html>
<!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)

Copyright (c) 2015 Fernando Moreira

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

20 changes: 20 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Site settings
title: ARIA-P
baseurl: "" # the subpath of your site, e.g. /blog/
url: "aria-p.github.io" # the base hostname & protocol for your site

# Build settings
markdown: kramdown

github: https://github.com/aria-p
google_analytics: UA-52446115-1

paginate: 10
comments: true
paginate_path: "/page/:num"

sass:
style: :compressed
sass_dir: _sass

permalink : /:title/
29 changes: 29 additions & 0 deletions _includes/comments.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{% if page.comments %}
<hr>

<aside id="comments" class="disqus">

<h2 class="txt-center">Comments</h2>

<div id="disqus_thread"></div>

<script type="text/javascript">
var disqus_shortname = '{{ site.disqus_shortname }}';
var disqus_identifier = '{{ page.id }}';
var disqus_title = '{{ page.title }}';
var disqus_url = '{{ site.url }}{{ post.url }}';
/*var disqus_developer = 1;*/

(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>

<noscript>
Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a>
</noscript>

</aside>
{% endif %}
11 changes: 11 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<footer class="footer t-center">
<div class="container">

{% include social-icons.html %}

<small>&copy; {{ site.time | date: '%Y' }} All rights reserved. Made with <a href="http://jekyllrb.com" target="_blank">Jekyll</a> and <i class="icon icon-heart"></i></small>
<small>theme by <a href="http://nandomoreira.me" target="_blank">nandomoreira.me</a></small>
<small>cover image by <a href="http://hameed.deviantart.com/art/Earth-2-5k-001-143495630" target="_blank">Hameed</a></small>

</div>
</footer>
29 changes: 29 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>
{% if page.title == 'Home' %}
{{ site.title }} &bull; {{ site.description }}
{% else %}
{{ page.title }} &bull; {{ site.title }}
{% endif %}
</title>

<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">

<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ site.google_analytics }}']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
37 changes: 37 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<header class="header">

<div class="overlay">

<div class="container">

<h1 class="title">
<a href="{{ site.baseurl }}/">{{ site.title }}</a>
</h1>

<nav class="navbar">
<a href="#" class="menu-icon">
<span></span>
<span></span>
<span></span>
</a>

<ul class="nav">
{% for page in site.pages %}
{% if page.title and page.title != 'Home' %}
<li><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
{% endif %}
{% endfor %}
<li><a href="{{ site.github }}" target="_blank">Github</a></li>
</ul>
</nav>
</div>

{% if page.slug == 'home' %}
<h2 class="txt-center">

</h2>
{% endif %}

</div>

</header>
19 changes: 19 additions & 0 deletions _includes/pagination.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<div class="container">
<nav class="pagination" role="pagination">
<ul>
{% if paginator.previous_page %}
{% if paginator.previous_page == 1 %}
<li><a class="newer-posts" href="{{ site.baseurl }}/">&laquo;</a></li>
{% else %}
<li><a class="newer-posts" href="{{ site.baseurl }}/page/{{ paginator.previous_page }}/">&laquo;</a></li>
{% endif %}
{% endif %}

<li><span class="page-number">Page {{paginator.page}} of {{paginator.total_pages}}</span></li>

{% if paginator.next_page %}
<li><a class="older-posts" href="{{ site.baseurl }}/page/{{ paginator.next_page }}/">&raquo;</a></li>
{% endif %}
</ul>
</nav>
</div>
11 changes: 11 additions & 0 deletions _includes/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<article class="post card container">
<header class="post-header">
<h1><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h1>
<span class="post-meta">
<time class="post-date" datetime="{{ page.date | date:"%Y-%m-%d" }}">{{ post.date | date: "%b %-d, %Y" }}</time>
</span>
</header>
<div class="post-content">
{{ post.content | strip_html | truncatewords: 30 }} <a href="{{ post.url | prepend: site.baseurl }}" class="readmore">Read more &raquo;</a>
</div>
</article>
4 changes: 4 additions & 0 deletions _includes/social-icons.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<div class="social-icons">
<ul class="text-left">
</ul>
</div>
13 changes: 13 additions & 0 deletions _layouts/compress.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
# Jekyll layout that compresses HTML
# v2.0.0
# http://jch.penibelst.de/
# © 2014–2015 Anatol Broder
# MIT License
---

{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% case _pres.size %}{% when 2 %}{% capture _content %}{{ _content }}<pre{{ _pres.first }}</pre>{{ _pres.last | split: " " | join: " " }}{% endcapture %}{% when 1 %}{% capture _content %}{{ _content }}{{ _pres.last | split: " " | join: " " }}{% endcapture %}{% endcase %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% assign _comment_befores = _content | split: _comments.first %}{% for _comment_before in _comment_befores %}{% assign _comment_content = _comment_before | split: _comments.last | first %}{% if _comment_content %}{% capture _comment %}{{ _comments.first }}{{ _comment_content }}{{ _comments.last }}{% endcapture %}{% assign _content = _content | remove: _comment %}{% endif %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}</body></html>
<!--
// # Zetsu Jekyll theme - https://github.com/nandomoreriame/zetsu/
// by nandomoreira.me
-->
16 changes: 16 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: compress
---
<!DOCTYPE html>
<html lang="pt-br">
<head>
{% include head.html %}
</head>
<body class="{{ page.slug }}">
<main class="main">
{% include header.html %}
{{ content }}
{% include footer.html %}
</main>
</body>
</html>
11 changes: 11 additions & 0 deletions _layouts/page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: default
---
<article class="post container card">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
</header>
<div class="post-content">
{{ content }}
</div>
</article>
37 changes: 37 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
layout: default
slug: single
---
<article class="post container card">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
<span class="post-meta">
<time class="post-date" datetime="{{ page.date | date:"%Y-%m-%d" }}">{{ page.date | date: "%b %-d, %Y" }}</time>

</span>
</header>

<div class="post-content">

{{ content }}

<aside class="share">

<span>Share this: </span>

<a href="http://twitter.com/share?text={{page.title}}&amp;url={{site.url}}{{ page.url }}&amp;hashtags=web,dev,blog,soudev&amp;via=nandomoreirame"
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="fa fa-twitter-square"></i>
</a>

<a href="https://www.facebook.com/sharer/sharer.php?u={{site.url}}{{page.url}}"
onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="fa fa-facebook-square"></i>
</a>

</aside>

{% include comments.html %}

</div>
</article>
11 changes: 11 additions & 0 deletions _posts/2015-10-16-welcome-group-37.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: post
title: "Welcome Group 37 / ARIA"
categories: weekly update
---

Welcome to the Capstone Project Blog for Group 37

​For this week, we worked on creating our group project page and blog along with turning in a hard copy of our problem statement. We also had a meeting with our project proposer Lewis McGibbney and his two colleagues Charles Thompson and Chris Mattmann. ​

The next things for us to do is to start looking into writing our requirements document.
11 changes: 11 additions & 0 deletions _posts/2015-10-23-planning-steps.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: post
title: "Moving ahead. Planning steps."
categories: weekly update
---

After meeting with our clients last week we have begun getting a clearer understanding of what our service will provide and the modules required to provide this. Over this week we have worked on defining some general architecture of how this project will accomplish the task at hand, thanks to Andy's prototype sketches.

This week we were also able to find a researcher to meet with and help drive the use cases for the project. Anne Nolin from the Mountain Hydro climatology Research Group.

We were also able to schedule our meeting time with our client for next week. Next we will be working on creating a requirements document and discuss next steps.​
14 changes: 14 additions & 0 deletions _posts/2015-10-29-details.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
layout: post
title: "Project Requirements. Working through the details."
categories: weekly update
---

​This week the team worked through planning out how we are going to structure the project.

We studied research that might indicate how our solution might help research and talked through our understanding of the project. With that knowledge created the requirements document.

Our client was able to throughly review the document and raised some potential conserns for us to fix.

Next week we are going to be starting to draft out some more details about our solution at a lower level as well as record some solid use cases.
9 changes: 9 additions & 0 deletions _posts/2015-11-06-req-doc.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: post
title: "Requirments doc and Technology review."
categories: weekly update
---

This week we met with the TA and discussed how to improve our requirements document. We also discussed where details needed to be included with regards to it and the technology review.

This week we have also been preparing for our client meeting next week. After discussing possible use cases with a local professor and gaining clarification of our project through email last week we are beginning to start pining down what technologies we think we will use and discuss it with our clients. ​
12 changes: 12 additions & 0 deletions _posts/2015-11-16-building-prototypes.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: post
title: "Building prototypes"
categories: weekly update
---

Last week we discussed with the client possible end results for our project and clarified some details regarding the path that the project should take.


We turned in a revision to our requirements document as well as the technology review.

This week we hope to further investigate our project and start developing more details about it. We will also be putting together a draft of our poster.​
Loading

0 comments on commit 7ee4bee

Please sign in to comment.