Skip to content

Commit f0ffcac

Browse files
committed
merge annoyingness
1 parent c3b8caa commit f0ffcac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+9461
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site
2+
.sass-cache

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
suave.stanford.edu

_config.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Site settings
2+
title: SUAVE
3+
email: suave-developers@lists.stanford.edu
4+
description: > # this means to ignore newlines until "baseurl:"
5+
A multi-fidelity conceptual design environment. Its purpose is to credibly produce conceptual-level design conclusions for future aircraft incorporating advanced technologies.
6+
baseurl: "" # the subpath of your site, e.g. /blog/
7+
url: "http://suavecode.github.io/" # the base hostname & protocol for your site
8+
github_username: suavecode
9+
travis_username: suavecode
10+
permalink: /:title
11+
12+
# Build settings
13+
markdown: kramdown
14+
15+
#markdown: redcarpet
16+
#redcarpet:
17+
# extensions: ["tables", "fenced_code_blocks"]

_includes/footer.html

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<script>
2+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
6+
7+
ga('create', '', 'auto');
8+
ga('send', 'pageview');
9+
10+
</script>
11+
12+
<script type="text/javascript">
13+
/* * * CONFIGURATION VARIABLES * * */
14+
var disqus_shortname = '';
15+
16+
/* * * DON'T EDIT BELOW THIS LINE * * */
17+
(function () {
18+
var s = document.createElement('script'); s.async = true;
19+
s.type = 'text/javascript';
20+
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
21+
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
22+
}());
23+
</script>

_includes/head.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
6+
<title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
7+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
8+
9+
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
10+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
11+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
12+
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
13+
<script src="http://momentjs.com/downloads/moment.js" type="text/javascript"></script>
14+
<script src="/js/main.js" type="text/javascript"></script>
15+
</head>

_includes/header.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<header class="site-header">
2+
3+
<div class="wrapper">
4+
5+
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
6+
7+
<nav class="site-nav">
8+
<a href="#" class="menu-icon">
9+
<svg viewBox="0 0 18 15">
10+
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
11+
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
12+
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
13+
</svg>
14+
</a>
15+
16+
<div class="trigger">
17+
{% for page in site.pages %}
18+
{% if page.title %}
19+
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
20+
{% endif %}
21+
{% endfor %}
22+
</div>
23+
</nav>
24+
25+
</div>
26+
27+
</header>

_includes/left-nav.html

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
&nbsp
2+
<a href="/" class="logo"><img src="/images/logo.svg" alt="SUAVE Code"><span>{{site.title}}</span></a>
3+
4+
<section>
5+
<h1 class="greetings">{{ site.greetings }}</h1>
6+
{{ site.description | markdownify }}
7+
</section>
8+
<nav class="main-nav">
9+
<ul>
10+
<li><a class="btn page-link {% if page.url == '/index.html' %}active{% endif %}" href="/">About</a></li>
11+
<li><a class="btn page-link {% if page.url == '/download/' %}active{% endif %}" href="/download/">Download</a></li>
12+
<li><a class="btn page-link {% if page.url == '/guides/index.html' or page.categories != nil %}active{% endif %}" href="/guides/">Guides</a></li>
13+
<li><a class="btn page-link {% if page.url == '/develop/' %}active{% endif %}" href="/develop/">Develop</a></li>
14+
<li><a class="btn page-link {% if page.url == '/forum/' %}active{% endif %}" href="/forum/">Forum</a></li>
15+
16+
</ul>
17+
</nav>
18+

_includes/main-content-footer.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<footer>
2+
<div class="social-media-list">
3+
<a class="social-media-link" href="https://github.com/suavecode/SUAVE">
4+
<span class="icon icon-github">
5+
<img src="/images/github.svg">
6+
</span>
7+
</a>
8+
9+
<a class="social-media-link" href="https://travis-ci.org/suavecode/SUAVE">
10+
<span class="icon icon-travis">
11+
<img src="/images/travis.svg">
12+
</span>
13+
</a>
14+
15+
{% if site.twitter_username %}
16+
<a href="https://twitter.com/{{ site.twitter_username }}">
17+
<span class="icon icon-twitter">
18+
<img src="/images/twitter.svg">
19+
</span>
20+
</a>
21+
{% endif %}
22+
{% if site.dribbble_username %}
23+
<a href="https://dribbble.com/{{ site.dribbble_username }}">
24+
<span class="icon icon-dribbble">
25+
<img src="/images/dribbble.svg">
26+
</span>
27+
</a>
28+
{% endif %}
29+
</div>
30+
31+
<br>
32+
33+
<small>Copyright &copy; 2015 <br> Stanford Aerospace Design Lab <br> All rights reserved</small>
34+
</footer>

_layouts/awesome.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html>
3+
{% include head.html %}
4+
5+
<!-- <a href="https://github.com/suavecode/SUAVE"><img style="position: absolute; z-index: 10; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>-->
6+
<body>
7+
8+
<div class="page-content">
9+
<div class="wrapper">
10+
<aside class="left-nav">
11+
<div class="verticalLineL">
12+
{% include left-nav.html %}
13+
{% include main-content-footer.html %}
14+
15+
</aside>
16+
<main class="main-content">
17+
{{ content }}
18+
19+
</main>
20+
21+
</div>
22+
</div>
23+
24+
25+
{% include footer.html %}
26+
27+
</body>
28+
29+
</html>

_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+
7+
<body>
8+
9+
<div class="page-content">
10+
<div class="wrapper">
11+
{{ content }}
12+
</div>
13+
</div>
14+
15+
{% include footer.html %}
16+
17+
18+
</body>
19+
20+
</html>

_layouts/page.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
layout: awesome
3+
---
4+
<div class="page">
5+
6+
<div class="verticalLineR">
7+
8+
<header class="hero">
9+
<div class="valign">
10+
<h1 class="title">{{ page.title }}</h1>
11+
<p class="subtitle">{{ page.subtitle }}</p>
12+
</div>
13+
</header>
14+
15+
<article class="content">
16+
{{ content }}
17+
</article>
18+
19+
20+
21+
22+
</div>

_layouts/post.html

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: awesome
3+
---
4+
<div class="single-post">
5+
6+
<div class="verticalLineR">
7+
8+
<header class="hero">
9+
<div class="valign">
10+
<h1 class="title">{{ page.title }}</h1>
11+
</div>
12+
</header>
13+
14+
<article class="content">
15+
{{ content }}
16+
</article>
17+
18+
<div class="content">
19+
<div id="disqus_thread"></div>
20+
<script type="text/javascript">
21+
/* * * CONFIGURATION VARIABLES * * */
22+
var disqus_shortname = '';
23+
var disqus_identifier = '{{ page.url | prepend: site.url }}';
24+
25+
/* * * DON'T EDIT BELOW THIS LINE * * */
26+
(function() {
27+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
28+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
29+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
30+
})();
31+
</script>
32+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
33+
</div>
34+
35+
</div>

0 commit comments

Comments
 (0)