Skip to content

Commit

Permalink
Revert "first"
Browse files Browse the repository at this point in the history
This reverts commit d2a08b5.
  • Loading branch information
janl committed May 26, 2012
1 parent d2a08b5 commit 3deaaab
Show file tree
Hide file tree
Showing 12 changed files with 114 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
_site
.DS_Store
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2012-jsconf-eu.jan.io
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
2012.jsconf.eu
==============

Leaking future pushes to our website.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
url: 2012.jsconf.eu
9 changes: 9 additions & 0 deletions _includes/list_of_posts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<aside>
<h4>Latest Posts</h4>
{% for post in site.posts limit:5 %}
<li>
<a href="{{ post.url }}" id="{{ cat }}">{{ post.title }}</a>
<small>{{ post.date | date_to_string }}</small>
</li>
{% endfor %}
</aside>
5 changes: 5 additions & 0 deletions _includes/navigation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<ul class="navigation">
<li><a href="#">Tickets</a></li>
<li><a href="#">Location</a></li>
<li><a href="#">Schedule</a></li>
</ul>
57 changes: 57 additions & 0 deletions _layouts/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!doctype html>
<meta charset="utf-8">
<style type="text/css" media="screen">
body {
background:url(../../../bg.jpg);

/* typography */
font-family: Helvetica, sans-serif;
}
a {
color: #E2007A;
}
h1 {
margin-top:0;
}
.navigation li {
display: inline;
}
ul.navigation {
padding-left:7px;
}
#logo {
background:url(../../../js.eu.png) no-repeat;
padding:180px 1em 0 210px;
font-style: italic;
}
#main {
/* center on the page */
margin: 0 auto 0 auto;
padding: 0;
width:600px;

/* colour */
background: #FFFFFF;
}
#content, aside {
margin:0;
padding: 0 1em 1em 1em;
}
aside {
margin-top:3em;
padding-top:1em;
}
aside {
background: #EEEEEE;
}
</style>
<!-- For more awesome source code, see view-source:http://2012.texasjavascript.com/ -->

<div id="main">
<div id="logo">October 6th &amp; 7th, 2012 &bull; Berlin</div>
{% include navigation.html %}
<div id="content">
{{ content }}
</div>
{% include list_of_posts.html %}
</div>
9 changes: 9 additions & 0 deletions _posts/2012-05-25-welcome.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: main
title: 2012 is a go!
---

# {{ page.title }}

JSconf EU is happening again. We are inviting the whole crowd to a great party in Berlin! We will announce more things like the call for speakers and tickets and whatnot shortly. This is just so you know it is happening.

15 changes: 15 additions & 0 deletions _posts/2012-05-26-ticket-schedule.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: main
title: Ticket Schedule
---

# {{ page.title }}

We are going to sell tickets on three occasions:

* June 3rd, 2012, 17:00 CEST
* June 17th, 2012, 17:00 CEST
* July 1st, 2012, 17:00 CEST

Ticket sales are through Amiando. We expect to sell out quickly each time.

Binary file added bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Index
layout: main
paginate: 1
---

<!-- Front page, one article only -->
{% for post in site.posts reversed limit:1 %}
{{ post.content }}
{% endfor %}

Binary file added js.eu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3deaaab

Please sign in to comment.