File tree 6 files changed +23
-6
lines changed
6 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ layout: nil
16
16
{% for post in site.posts %}
17
17
{% if post.feed != "project" %}
18
18
<entry >
19
- <id >http://www.Code52.org/{{ post.id }}</id >
19
+ <id >http://www.Code52.org/{{ post.url }}</id >
20
20
<link type =" text/html" rel =" alternate" href =" http://www.Code52.org/{{ post.url }}" />
21
21
<title >{{ post.title | xml_escape }}</title >
22
22
<updated >{{ post.date | date_to_xmlschema }}</updated >
Original file line number Diff line number Diff line change 86
86
font-size : 0.8em ;
87
87
font-weight : bold;
88
88
}
89
+
90
+ .olderpostdate
91
+ {
92
+ font-size : 0.8em ;
93
+ color : # aaaaaa ;
94
+ width : 150px ;
95
+ margin-right : 15px ;
96
+ }
89
97
.idea h1 , .entry h1
90
98
{
91
99
margin-bottom : 5px ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ title : code52
6
6
{% include latest_project.html %}
7
7
8
8
<ul class =" ideas " >
9
- {% for post in site.posts %}
9
+ {% for post in site.posts limit:5 %}
10
10
<li>
11
11
<div class="idea">
12
12
{% if forloop.first and post.layout == "post" %}
@@ -40,7 +40,16 @@ title : code52
40
40
</li>
41
41
{% endfor %}
42
42
</ul >
43
-
43
+
44
+ <h3 >OLDER</h3 >
45
+ <ul class =" postArchive " >
46
+ {% for post in site.posts offset:5 %}
47
+ <li >
48
+ <span class =" olderpostdate " > {{ post.date | date: "%d %b" }} </span > <a class =" postlink " href =" {{ post.id }} " >{{ post.title }}</a >
49
+ </li >
50
+ {% endfor %}
51
+ </ul >
52
+
44
53
<script type =" text/javascript " >
45
54
// <![CDATA[
46
55
(function () {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ layout: nil
16
16
{% for post in site.posts %}
17
17
{% if post.feed == "project" %}
18
18
<entry >
19
- <id >http://www.Code52.org/{{ post.id }}</id >
19
+ <id >http://www.Code52.org/{{ post.url }}</id >
20
20
<link type =" text/html" rel =" alternate" href =" http://www.Code52.org/{{ post.url }}" />
21
21
<title >{{ post.title | xml_escape }}</title >
22
22
<updated >{{ post.date | date_to_xmlschema }}</updated >
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ layout: nil
19
19
<link >http://www.Code52.org{{ post.url }}</link >
20
20
<pubDate >{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate >
21
21
<
author >
[email protected] (Code52 Team)</
author >
22
- <guid >http://www.Code52.org{{ post.id }}</guid >
22
+ <guid >http://www.Code52.org{{ post.url }}</guid >
23
23
<description >{{ post.content | xml_escape }}</description >
24
24
</item >
25
25
{% endif%}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ layout: nil
19
19
<link >http://www.Code52.org{{ post.url }}</link >
20
20
<pubDate >{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate >
21
21
<
author >
[email protected] (Code52 Team)</
author >
22
- <guid >http://www.Code52.org{{ post.id }}</guid >
22
+ <guid >http://www.Code52.org{{ post.url }}</guid >
23
23
<description >{{ post.content | xml_escape }}</description >
24
24
</item >
25
25
{% endif %}
You can’t perform that action at this time.
0 commit comments