Skip to content

Commit ac79614

Browse files
committed
starting a newer, simpler layout page
1 parent c264ac8 commit ac79614

File tree

9 files changed

+90
-75
lines changed

9 files changed

+90
-75
lines changed

_includes/about.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<div class="item">
2+
3+
<div class="heading">about code52</div>
4+
5+
6+
7+
</div>

_includes/footer.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<div class="footer right">
2+
<ul>
3+
<li><a href="/rss.xml"><img src="/img/25.png" /> announcements</a></li>
4+
<li><a href="/projectsrss.xml"><img src="/img/25.png" /> progress logs</a></li>
5+
</ul>
6+
</div>

_includes/get_involved.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<div class="item">
2+
3+
<div class="heading">what else can I do?</div>
4+
5+
<div class="description"></div>
6+
7+
<div class="details">
8+
<ul>
9+
<li><a id="suggest" href="http://code52.uservoice.com">suggest a project</a></li>
10+
<li><a href="http://jabbr.net/#/rooms/code52">chatroom</a></li>
11+
<li><a href="http://twitter.com/code_52">twitter</a></li>
12+
<li><a href="http://code52.org/projects.html">contribute to a previous project</a></li>
13+
</ul>
14+
</div>
15+
</div>

_includes/latest_project.html

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
1-
<div class="latest">
1+
<div class="item">
22

3-
<h3>The latest Code52 project is <a href="http://code52.org/pretzel.html">Pretzel</a></h3>
3+
<div class="heading">current project</div>
44

5-
<div class="description">Pretzel is a .NET based static site generator tool for quickly creating websites. Read more about it <a href="http://code52.org/pretzel.html">here</a>.</div>
5+
<div class="description"><a href="http://code52.org/pretzel.html">Pretzel</a> is a .NET based static site generator tool for quickly creating websites.</div>
66

7-
<div class="details">
7+
<div class="subheading">follow the action</div>
88

9+
<div class="details">
910
<ul>
1011
<li>Fork and contribute on <a href="https://github.com/Code52/Pretzel">GitHub</a></li>
1112
<li>Follow the conversation on <a href="https://jabbr.net/">JabbR</a></li>
1213
<li>Track the progress on <a href="https://trello.com/board/pretzel/4f25ffb3dbbed1ab5a4f0f5a">Trello</a></li>
1314
</ul>
14-
1515
</div>
16-
<div class="description">But wait, there's more!</div>
17-
<div class="other">
18-
We've also got a number of <strong><a href="http://code52.org/projects.html">previous projects</a></strong> which you can help contribute to, or you can check back for the next announced project at approx <strong>10pm Monday, <a href="http://www.google.com.au/search?sourceid=chrome&ie=UTF-8&q=time+sydney+australia">Sydney Australia time</a>.</strong>
19-
</div>
2016

17+
<div class="description">We are currently planning to start the next project at approx <a href="http://timeanddate.com/worldclock/fixedtime.html?iso=20120206T22&p1=240">10pm Monday, Sydney Time</a></div>
2118
</div>

_includes/links.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<div class="item">
2+
3+
<div class="heading">more links</div>
4+
5+
<div class="details">
6+
<ul>
7+
<li><a href="https://code52.org/blog.html">Blog Feed</a></li>
8+
<li><a href="http://code52.org/contributing.html">How we use Git and GitHub</a></li>
9+
<li><a href="https://code52.org/trello.html">How we use Trello</a></li>
10+
</ul>
11+
</div>
12+
</div>

_layouts/splash.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta content="en-au" http-equiv="Content-Language" />
5+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
6+
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="Blog Feed" />
7+
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Blog Feed" />
8+
<link href="/projectsrss.xml" type="application/rss+xml" rel="alternate" title="Projects Feed" />
9+
<link href="/projectsatom.xml" type="application/atom+xml" rel="alternate" title="Projects Feed" />
10+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
11+
<title>{% if page.title != "code52" %}{{ page.title }} - code52{% else %}{{ page.title }}{% endif %}</title>
12+
<link rel="stylesheet" type="text/css" href="/css/style20120128.css" />
13+
<link rel="shortcut icon" href="/img/favicon.ico" />
14+
</head>
15+
<body>
16+
<div id="container">
17+
18+
<!-- background image: 52, aligned left, semi-transparent -->
19+
20+
<div class="title left">
21+
<a href="/" id="home" title="home" alt="home">code52 - a new coding project every week</a>
22+
</div>
23+
24+
<!-- each of these items are tab-style sections for users to switch between -->
25+
26+
<div class="content left">
27+
28+
{% include latest_project.html %}
29+
30+
{% include get_involved.html %}
31+
32+
{% include links.html %}
33+
34+
</div>
35+
36+
{% include footer.html %}
37+
38+
</div>
39+
</body>
40+
</html>

img/logo.png

63.1 KB
Loading

index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout : splash
3+
title : code52
4+
---

index.md

Lines changed: 0 additions & 66 deletions
This file was deleted.

0 commit comments

Comments
 (0)