Skip to content

Commit

Permalink
Merge pull request #22 from MLHale/tylerbranch
Browse files Browse the repository at this point in the history
Tylerbranch Merge containing new layouts addressing point 8 in #18
  • Loading branch information
MLHale authored Jun 18, 2018
2 parents ef35114 + 0c6f66a commit 32706b1
Show file tree
Hide file tree
Showing 66 changed files with 22,379 additions and 320 deletions.
Binary file added 2018/.DS_Store
Binary file not shown.
Empty file modified 2018/index.md
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion 2018/modules_in_markdown.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@
####Phishing
[Lesson plan](https://mlhale.github.io/nebraska-gencyber-modules/phishing/lesson-plan.html)

[Module](https://mlhale.github.io/nebraska-gencyber-modules/phishing/)
[Module](https://mlhale.github.io/nebraska-gencyber-modules/phishing/)
120 changes: 120 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
<!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 }}">
<link rel="stylesheet" href="../assets/css/materialize.min.css"/>
<link rel="stylesheet" href="../assets/css/style.css">

<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>

<div class="row">
<div class="col s12 m6 l1">
<header class="projectpage">
<h1 class="projectlink"><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 %}

{% if site.show_downloads %}
<ul>
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
</ul>
{% endif %}
</header>
</div>
</div>

<div class="container" style="width: 750px; margin: 0 auto;">
<div class="wrapper">
<div class="row" style="width: 750px; margin: 0 150px;">
<section>
<div class="container" style="width: 750px; margin: 0 auto;">
<div class="row-full">

{{ page.content | markdownify }}

</div>
</div>
</section>
</div>
</div>
</div>

<div class="row">
<div class="col s12 m6 l1">
<footer class="leftinfo">
<p class="maintained">This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>

<small>
<a href="https://github.com/MLHale/nebraska-gencyber">Nebraska GenCyber</a> <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">
<img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png"></a>
<br> is licensed under a
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
<br>
<br>
</small>

<small>Overall content: Copyright (C) 2017
<a href="http://faculty.ist.unomaha.edu/mhale/">Dr. Matthew L. Hale</a>,
<a href="http://faculty.ist.unomaha.edu/rgandhi/">Dr. Robin Gandhi</a>,
and <a href="http://www.bellevue.edu/about/leadership/faculty/rausch-douglas">Doug Rausch</a>.
<br>
<br>
</small>

<small>Lesson content: Copyright (C)
<a href="http://faculty.ist.unomaha.edu/rgandhi/">Robin Gandhi</a> and
<a href="http://faculty.ist.unomaha.edu/mhale/">Dr. Matthew L. Hale</a> 2017.
<br>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">
<img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png"></a>
<br>
<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">This lesson</span>
is licensed by the author under a
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
<br>
<br>
</small>

<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
{% 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','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
</div>
</div>

<script type="text/javascript" src="../assets/js/materialize.js"></script>
<script type="text/javascript" src="../assets/js/materialize.min.js"></script>
</body>
</html>
Binary file added assets/.DS_Store
Binary file not shown.
Loading

0 comments on commit 32706b1

Please sign in to comment.