Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 515f96f

Browse files
committed
prepare 2014 structure
1 parent cd6e942 commit 515f96f

21 files changed

+129
-3
lines changed

.gitignore

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

2013/extra1.css

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.navbar-nav {
2+
width: 100%;
3+
}
4+
5+
.navbar-nav > li.root {
6+
float: right;
7+
}

2013/index.html

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
<link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700' rel='stylesheet' type='text/css'>
1313
<link rel="stylesheet" type="text/css" href="./application.css" />
14+
<link rel="stylesheet" type="text/css" href="./extra1.css" />
1415
<!-- <link rel="stylesheet/less" type="text/css" href="./less/bootstrap.less" /> -->
1516
<!-- <script src="./js/less&#45;1.4.2.min.js" type="text/javascript"></script> -->
1617

@@ -41,6 +42,7 @@
4142
<li><a href="./schedule.html">Schedule</a></li>
4243
<li><a href="./live.html">Live</a></li>
4344
<li><a href="./report.html">Report</a></li>
45+
<li class="root"><a href="/">Root</a></li>
4446
</ul>
4547
</div><!--/.nav-collapse -->
4648
</div>

2014/default.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
---
3+
@import '2014/layout'

2014/index.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: 2014/top
3+
title: VimConf 2014
4+
---
5+
<p>Under construction.</p>
6+
7+
{%include 2014/pages.html%}

2014/info.mkd

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: 2014/pages
3+
title: Information
4+
5+
---
6+
## Details

2014/live.mkd

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: 2014/pages
3+
title: Live
4+
5+
---
6+
## Live/Streaming

2014/registration.mkd

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: 2014/pages
3+
title: Registration
4+
5+
---
6+
## Registration
7+
8+
### Guests
9+
10+
### Speakers

2014/report.mkd

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: 2014/pages
3+
title: Report
4+
5+
---
6+
## Report

2014/timetable.mkd

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: 2014/pages
3+
title: Timetable
4+
5+
---
6+
## Timetable

_config.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
encoding: utf-8
2+
markdown: redcarpet
3+
permalink: pretty
4+
5+
gems:
6+
- jekyll-sitemap
7+
8+
redcarpet:
9+
extensions:
10+
- 'autolink'
11+
- 'tables'
12+
- 'strikethrough'
13+
14+
sass:
15+
# commented out while under development.
16+
#style: compressed

_data/root-2014.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
'/2014'

_data/speakers-2014.yml

Whitespace-only changes.

_data/timetable-2014.yml

Whitespace-only changes.

_includes/2014/pages.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<ul class="pages">
2+
<li><a href="{{site.data.root-2014}}/">VimConf 2014</a></li>
3+
<li><a href="{{site.data.root-2014}}/info/">Info</a></li>
4+
<li><a href="{{site.data.root-2014}}/registration/">Registration</a></li>
5+
<li><a href="{{site.data.root-2014}}/timetable/">Timetable</a></li>
6+
<li><a href="{{site.data.root-2014}}/live/">Live</a></li>
7+
<li><a href="{{site.data.root-2014}}/report/">Report</a></li>
8+
<li class="upward"><a href="/">up (vimconf)</a></li>
9+
</ul>

_layouts/2014/default.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
---
3+
<!DOCTYPE html>
4+
<html{%if page.lang %} lang="{{page.lang}}"{%endif%}>
5+
<head>
6+
<meta charset="utf-8" />
7+
<meta property="og:type" content="article">
8+
<meta property="og:title" content="{{page.title|liquify}}">
9+
<meta property="og:url" content="{{site.base-url}}{{page.url}}">{%if page.summary%}
10+
<meta property="og:description" content="{{page.summary|liquify|markdownify|strip_html}}">{%endif%}
11+
<meta property="og:site_name" content="VimConf - Vim Conference">
12+
<title>{{ page.title | liquify }}</title>
13+
<link rel="stylesheet" href="{{site.data.root-2014}}/default.css" type="text/css" />{%for css in page.stylesheets%}
14+
<link rel="stylesheet" href="{{site.data.root-2014}}/{{css}}" type="text/css" />{%endfor%}
15+
</head>
16+
<body{%if page.class.body%} class="{{page.class.body}}"{%endif%}>
17+
{{content}}</body>{%for js in page.javascripts%}
18+
<script type="text/javascript" src="{{js}}"></script>{%endfor%}
19+
</html>

_layouts/2014/pages.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: 2014/default
3+
class:
4+
body: pages
5+
---
6+
<nav>{%include 2014/pages.html%}</nav>
7+
{{content}}

_layouts/2014/top.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: 2014/default
3+
class:
4+
body: top
5+
---
6+
{{content}}

_sass/2014/layout.scss

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.layout {
2+
background: test;
3+
}

index.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ <h2>An International Vim Conference</h2>
4141

4242

4343
<section id="main_content">
44-
<a class="to-2013" href='./2013'>VimConf 2013</a>
44+
<!--
45+
<a class="to-year" href='./2014/'>VimConf 2014</a>
46+
-->
47+
<a class="to-year current" href='./2013'>VimConf 2013</a>
4548
</section>
4649

4750
<footer>

stylesheets/screen.css

+9-2
Original file line numberDiff line numberDiff line change
@@ -282,10 +282,17 @@ section#main_content:before{
282282
position: relative;
283283
display: block;
284284
}
285-
section#main_content .to-2013{
286-
font-size: 400%;
285+
286+
section#main_content .to-year {
287+
font-size: 200%;
287288
display: block;
288289
text-align: center;
290+
color: #96aab4;
291+
}
292+
293+
section#main_content .to-year.current {
294+
font-size: 400%;
295+
color: #417090;
289296
}
290297

291298
/* footer */

0 commit comments

Comments
 (0)