Skip to content

Commit

Permalink
Move prework to its own page; import "Try Turing" style
Browse files Browse the repository at this point in the history
  • Loading branch information
stevekinney committed Jun 26, 2016
1 parent edca8c4 commit 648d306
Show file tree
Hide file tree
Showing 11 changed files with 575 additions and 496 deletions.
6 changes: 0 additions & 6 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,6 +0,0 @@
<header>
<h1>
Turing School of Software and Design
<small>Front-End Engineering Curriculum</small>
</h1>
</header>
28 changes: 17 additions & 11 deletions _includes/navigation.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
<nav>
<ul>
<li class="arrow">Before Turing</li>
<li><a href="/">Introduction</a></li>
<li><a href="/books.html">Book List</a></li>
<li><a href="/tools.html">Tools and Apps</a></li>
<li><a href="/#week">Prework: Week</a></li>
<li><a href="/#month">Prework: Month</a></li>
<li class="arrow">Internal Resources</li>
<li><a href="/resources.html">Resources</a></li>
</ul>
<nav class="sidebar-navigation">
<section class="sidebar-navigation--before">
<h1>Before Turing</h1>
<ul>
<li><a href="/prework">Introduction</a></li>
<li><a href="/prework/books.html">Book List</a></li>
<li><a href="/prework/tools.html">Tools and Apps</a></li>
<li><a href="/prework/#week">Prework: Week</a></li>
<li><a href="/prework/#month">Prework: Month</a></li>
</ul>
</section>
<section class="sidebar-navigation--during">
<h1>During Turing</h1>
<ul>
<li><a href="https://calendar.google.com/calendar/embed?src=casimircreative.com_m6bndqol81h6jdlnpo0a6raot0%40group.calendar.google.com&ctz=America/Denver">Module 1 Calendar</a></li>
</ul>
</section>
</nav>
26 changes: 19 additions & 7 deletions _layouts/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,24 @@
</head>

<body>
{% include navigation.html %}

<section class="container">
{% include header.html %}
{{content}}
{% include footer.html %}
</section>
<div class="container">
<section class="sidebar">
{% include header.html %}
{% include navigation.html %}
</section>
<section class="content">
<article>
<header>
<h1>
Turing School of Software and Design
<small>Front-End Engineering Program</small>
</h1>
</header>
{{content}}
</article>
{% include footer.html %}
</section>
</div>
<script async src="//assets.codepen.io/assets/embed/ei.js"></script>
</body>
</html>
28 changes: 18 additions & 10 deletions _layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,23 @@
</head>

<body>
{% include navigation.html %}

<section class="container">
{% include header.html %}
<article>
<h2 id="before">{{ page.title }}</h2>
{{content}}
</article>
{% include footer.html %}
</section>
<div class="container">
<section class="sidebar">
{% include header.html %}
{% include navigation.html %}
</section>
<section class="content">
<article>
<header>
<h1>
{{ page.title }}
</h1>
</header>
{{content}}
</article>
{% include footer.html %}
</section>
</div>
<script async src="//assets.codepen.io/assets/embed/ei.js"></script>
</body>
</html>
Loading

0 comments on commit 648d306

Please sign in to comment.