Skip to content

Commit ae827b1

Browse files
author
Akash.S
committed
fixing style
ordering done
1 parent a8cf985 commit ae827b1

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

_posts/2016-08-31-centos-7-install-kubernetes-1.3.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
22
layout: post
3-
title: "centos 7 install kubernetes 1.3!"
3+
title: "Centos 7 install kubernetes 1.3"
44
date: 2016-08-31 14:17:06 +0530
55
category: containers
66
comments: true
77
canonical_url: containers/centos-7-kubernetes-1-3-install.html
8-
tags: [kubernetes, docker, containers]
8+
tags: [kubernetes, docker, containers, kubernetes 1.3, centos 7, docker cluster]
99
shortinfo: This post list down the steps to install kubernetes 1.3 on centos 7.
1010
description: steps to install kubernetes 1.3 on centos 7 with docker containerized application.
11+
order: 1
1112
---
1213

1314

_posts/2016-08-31-hibernate-troubleshoot.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ category: java
66
canonical_url: java/hibernate-troubleshoot.html
77
tags: [java, java 8, jvm, hibernate]
88
shortinfo: Few issue in hibernate that occured while project setup. Solutions are provided for the issues.
9+
order: 100
910
---
1011

1112

_posts/2016-09-19-pdf-to-paperwhite-format.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ category: tools
66
canonical_url: tools/pdf-to-paperwhite-format.html
77
tags: [pdf, paperwhite, k2pdf, azw3, linux]
88
shortinfo: Converting pdf to paperwhite format.
9+
order: 500
910
---
1011

1112

assets/css/style.css

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ article .share .gplus:hover {
8282
}
8383

8484
.page-header {
85-
color: #e74c3c;
86-
text-shadow: 1px 1px 1px rgba(150, 150, 150, 1);
85+
color: #000000;
86+
/*text-shadow: 1px 1px 1px rgba(150, 150, 150, 1);*/
8787
}
8888

8989
@media only screen and (min-width: 768px) {
@@ -102,9 +102,10 @@ article{
102102
}
103103

104104
.post-date {
105-
text-transform: uppercase;
105+
/*text-transform: uppercase;*/
106106
font-size: 14px;
107107
letter-spacing: 3px;
108+
color: #888;
108109
}
109110

110111
article {
@@ -124,19 +125,21 @@ article.home h5,
124125
article.home h6 {
125126
font-family: 'Ubuntu', sans-serif;
126127
color: #f2756a;
128+
margin-top: 10px;
129+
margin-bottom: 0px;
127130
}
128131

129132
article.home h1 a,
130133
article.home h2 a,
131134
article.home h3 a,
132135
article.home h4 a {
133-
color: #f2756a;
136+
color: #000000;
134137
}
135138
article.home h1 a:hover,
136139
article.home h2 a:hover,
137140
article.home h3 a:hover,
138141
article.home h4 a:hover {
139-
color: #e74c3c;
142+
color: #f2756a;
140143
}
141144

142145
.author .author-image {

index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
tagline:
44
---
55

6-
{% for post in paginator.posts %}
6+
{% assign sorted_pages = (paginator.posts | sort:"order") %}
7+
8+
{% for post in sorted_pages %}
79

810
<article class="home">
911

0 commit comments

Comments
 (0)