commit
4a956098b5
@ -1,46 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>WACAS: {{ page.title }}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="{{ site.base }}/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="{{ site.base }}/css/sampa.css" rel="stylesheet">
|
||||
<link href="{{ site.base }}/css/print.css" rel="stylesheet"
|
||||
media="print">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<ul class="nav nav-pills pull-right">
|
||||
{% assign shorturl = page.url | replace:'index.html','' %}
|
||||
{% for item in site.nav_wacas %}
|
||||
<li {% if item.link == shorturl %}class="active"{% endif %}>
|
||||
<a href="{{ site.base }}{{ item.link }}">
|
||||
{{ item.title }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<a href="./"><img style="float: left; margin-right: 1em"
|
||||
src="{{ site.base }}/img/wacas-small.jpg"
|
||||
width="56" height="56" alt="logo" /></a>
|
||||
<a href="./"><h1>WACAS 2014</h1></a>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{% comment %}Liquid is sort of terrible! I think "!= true" is the
|
||||
only way to do negation?{% endcomment %}
|
||||
{% if page.notitle != true %}
|
||||
<h2>{{ page.title }}</h2>
|
||||
{% endif %}
|
||||
|
||||
{{ content }}
|
||||
|
||||
</div> <!-- /container -->
|
||||
|
||||
<!-- Support retina images. -->
|
||||
<script type="text/javascript"
|
||||
src="{{ site.base }}/js/srcset-polyfill.js"></script>
|
||||
</body>
|
||||
</html>
|
File diff suppressed because one or more lines are too long
@ -1,36 +0,0 @@
|
||||
.container {
|
||||
-moz-column-count: 2;
|
||||
-webkit-column-count: 2;
|
||||
column-count: 2;
|
||||
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.3em;
|
||||
margin: 0;
|
||||
}
|
||||
h3 {
|
||||
font-size: 1.2em;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.noprint {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body {
|
||||
padding: -2em 0 0 0;
|
||||
}
|
||||
|
||||
/* Disable Bootstrap's link display. */
|
||||
@media print {
|
||||
a:link:after,
|
||||
a:visited:after {
|
||||
content: "" !important;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue