This repository was archived by the owner on Jun 13, 2023. It is now read-only.
File tree 21 files changed +129
-3
lines changed
21 files changed +129
-3
lines changed Original file line number Diff line number Diff line change
1
+ /.sass-cache /
2
+ /_site /
Original file line number Diff line number Diff line change
1
+ .navbar-nav {
2
+ width : 100% ;
3
+ }
4
+
5
+ .navbar-nav > li .root {
6
+ float : right;
7
+ }
Original file line number Diff line number Diff line change 11
11
12
12
< link href ='http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700 ' rel ='stylesheet ' type ='text/css '>
13
13
< link rel ="stylesheet " type ="text/css " href ="./application.css " />
14
+ < link rel ="stylesheet " type ="text/css " href ="./extra1.css " />
14
15
<!-- <link rel="stylesheet/less" type="text/css" href="./less/bootstrap.less" /> -->
15
16
<!-- <script src="./js/less-1.4.2.min.js" type="text/javascript"></script> -->
16
17
41
42
< li > < a href ="./schedule.html "> Schedule</ a > </ li >
42
43
< li > < a href ="./live.html "> Live</ a > </ li >
43
44
< li > < a href ="./report.html "> Report</ a > </ li >
45
+ < li class ="root "> < a href ="/ "> Root</ a > </ li >
44
46
</ ul >
45
47
</ div > <!--/.nav-collapse -->
46
48
</ div >
Original file line number Diff line number Diff line change
1
+ ---
2
+ ---
3
+ @import ' 2014/layout'
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: 2014/top
3
+ title: VimConf 2014
4
+ ---
5
+ < p > Under construction.</ p >
6
+
7
+ {%include 2014/pages.html%}
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : 2014/pages
3
+ title : Information
4
+
5
+ ---
6
+ ## Details
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : 2014/pages
3
+ title : Live
4
+
5
+ ---
6
+ ## Live/Streaming
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : 2014/pages
3
+ title : Registration
4
+
5
+ ---
6
+ ## Registration
7
+
8
+ ### Guests
9
+
10
+ ### Speakers
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : 2014/pages
3
+ title : Report
4
+
5
+ ---
6
+ ## Report
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : 2014/pages
3
+ title : Timetable
4
+
5
+ ---
6
+ ## Timetable
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ ' /2014'
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: 2014/default
3
+ class:
4
+ body: pages
5
+ ---
6
+ < nav > {%include 2014/pages.html%}</ nav >
7
+ {{content}}
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: 2014/default
3
+ class:
4
+ body: top
5
+ ---
6
+ {{content}}
Original file line number Diff line number Diff line change
1
+ .layout {
2
+ background : test;
3
+ }
Original file line number Diff line number Diff line change @@ -41,7 +41,10 @@ <h2>An International Vim Conference</h2>
41
41
42
42
43
43
< 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 >
45
48
</ section >
46
49
47
50
< footer >
Original file line number Diff line number Diff line change @@ -282,10 +282,17 @@ section#main_content:before{
282
282
position : relative;
283
283
display : block;
284
284
}
285
- section # main_content .to-2013 {
286
- font-size : 400% ;
285
+
286
+ section # main_content .to-year {
287
+ font-size : 200% ;
287
288
display : block;
288
289
text-align : center;
290
+ color : # 96aab4 ;
291
+ }
292
+
293
+ section # main_content .to-year .current {
294
+ font-size : 400% ;
295
+ color : # 417090 ;
289
296
}
290
297
291
298
/* footer */
You can’t perform that action at this time.
0 commit comments