File tree 5 files changed +48
-11
lines changed
5 files changed +48
-11
lines changed Original file line number Diff line number Diff line change 3
3
---
4
4
< h1 class ="postTitle "> < a href ="{{ page.url }} "> {{ page.title }}</ a > </ h1 >
5
5
< div class ="post ">
6
- {{ content }}
7
- < p class ="meta ">
8
- {{ page.date | date: "%b %d, %Y" }} -
9
- < a href ="{{ page.url }} "> Permalink</ a >
6
+ < div class ="date ">
7
+ < span class ="weekDay "> {{ page.date | date: "%a" }}</ span > < br />
8
+ < span class ="monthDay "> {{ page.date | date: "%b %d" }}</ span > < br />
9
+ < span class ="year "> {{ page.date | date: "%Y" }}</ span >
10
+ </ div >
11
+ < div class ="text ">
12
+ {{ content }}
13
+ </ div >
14
+ < div class ="meta ">
15
+ < a href ="{{ page.url }} "> Permalink</ a > -
16
+ Posted at {{ page.date | date: "%I:%M %p" }}
10
17
< br />
11
18
{% for c in page.categories %}
12
19
< span class ="postCategory "> {{ c }}</ span > {% if forloop.last != true %},{% endif %}
13
20
{% endfor %}
14
- </ p >
21
+ </ div >
15
22
</ div >
16
23
17
24
< div id ="related ">
Original file line number Diff line number Diff line change 1
1
---
2
2
layout: post
3
+ date: 2009-12-13 12:53:38
3
4
title: "Kerberos and ksu"
4
5
categories:
5
6
- linux
Original file line number Diff line number Diff line change 1
1
---
2
2
layout: post
3
3
title: "Bash history retention for root"
4
+ date: 2010-09-17 14:17:50
4
5
categories:
5
6
- linux
6
7
- sysadmin
Original file line number Diff line number Diff line change 1
1
@import url (http://fonts.googleapis.com/css?family=Cabin|Droid+Serif);
2
2
@import url ('syntax.css' );
3
3
.highlighttable .linenos .linenodiv {
4
- border-right : 1px # CCC solid ;
4
+ border-right : 1px solid # CCC ;
5
5
padding-right : 10px ;
6
6
margin-right : 10px ;
7
7
}
8
8
9
9
BODY {
10
10
font : 15 px/23px 'Droid Serif' , serif;
11
+ margin : 0 ;
12
+ padding : 0 ;
11
13
}
12
14
13
- .header , BODY {
15
+ .header {
14
16
padding : 5px ;
15
17
margin : 0px 0px 20px 0px ;
16
18
}
17
19
18
20
.header {
19
21
border-bottom : 1px dashed;
20
22
font : 32px 'Cabin' , sans-serif;
23
+ margin-bottom : 1.5em ;
21
24
}
22
25
23
26
A , A : visited {
@@ -37,7 +40,24 @@ A:hover {
37
40
38
41
.content : first-child { margin-top : 0 ; }
39
42
43
+ .content .date {
44
+ border-bottom : 1px solid # CCC ;
45
+ text-align : center;
46
+ /*width: 5em;*/
47
+ float : left;
48
+ color : # 787 ;
49
+ }
50
+
51
+ .content .date .weekDay { font-size : 1.9em ; }
52
+ .content .date .monthDay { font-size : 1em ; }
53
+ .content .date .year { font-size : 1.4em ; }
54
+
55
+ .content .text {
56
+ margin-left : 5em ;
57
+ }
58
+
40
59
.meta {
60
+ clear : both;
41
61
margin : 0 ;
42
62
padding : 0 ;
43
63
text-align : right;
Original file line number Diff line number Diff line change 5
5
{% for post in paginator.posts %}
6
6
< h1 class ="postTitle "> < a href ="{{ post.url }} "> {{ post.title }}</ a > </ h1 >
7
7
< div class ="post ">
8
- {{ post.content }}
9
- < p class ="meta ">
10
- {{ post.date | date: "%b %d, %Y" }} -
8
+ < div class ="date ">
9
+ < span class ="weekDay "> {{ post.date | date: "%a" }}</ span > < br />
10
+ < span class ="monthDay "> {{ post.date | date: "%b %d" }}</ span > < br />
11
+ < span class ="year "> {{ post.date | date: "%Y" }}</ span >
12
+ </ div >
13
+ < div class ="text ">
14
+ {{ post.content }}
15
+ </ div >
16
+ < div class ="meta ">
17
+ < a href ="{{ post.url }} "> Permalink</ a > -
18
+ Posted at {{ post.date | date: "%I:%M %p" }} -
11
19
< a id ="more " href ="{{ post.url }}#disqus_thread " data-disqus-identifier ="{{ post.url }} "> Comments</ a >
12
20
< br />
13
21
{% for c in post.categories %}
14
22
< span class ="postCategory "> {{ c }}</ span > {% if forloop.last != true %},{% endif %}
15
23
{% endfor %}
16
- </ p >
24
+ </ div >
17
25
</ div >
18
26
{% endfor %}
19
27
You can’t perform that action at this time.
0 commit comments