Skip to content

Commit 5633b5b

Browse files
committed
Small fix
1 parent ead9f24 commit 5633b5b

File tree

4 files changed

+36
-33
lines changed

4 files changed

+36
-33
lines changed

_includes/open-source-page.html

+33-31
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% assign sorted_repos = (site.github.public_repositories | sort: 'stargazers_count') | reverse | where: "fork", "false" %}
2-
<div id="container-open-source" class="container">
3-
<section class="jumbotron" geo-pattern="{{ page.title }}">
2+
<div id="container-open-source">
3+
<section class="jumbotron geopattern" data-pattern-id="{{ page.title }}">
44
<div class="container">
55
<div id="jumbotron-meta-info">
66
<h1>Open Source Projects</h1>
@@ -11,40 +11,42 @@ <h1>Open Source Projects</h1>
1111
</div>
1212
</section>
1313

14-
<div class="repo-list row">
15-
<!-- Check here for github metadata -->
16-
<!-- https://help.github.com/articles/repository-metadata-on-github-pages/ -->
17-
{% for repo in sorted_repos %}
18-
<div class="col-md-4 card text-center">
19-
<div class="thumbnail">
20-
<div class="card-image geopattern" data-pattern-id="{{ repo.name }}">
21-
<div class="card-image-cell">
22-
<h3 class="card-title">
23-
<a href="{{ repo.html_url }}" target="_blank">{{ repo.name }}</a>
24-
</h3>
14+
<section class="container">
15+
<div class="repo-list row">
16+
<!-- Check here for github metadata -->
17+
<!-- https://help.github.com/articles/repository-metadata-on-github-pages/ -->
18+
{% for repo in sorted_repos %}
19+
<div class="col-md-4 card text-center">
20+
<div class="thumbnail">
21+
<div class="card-image geopattern" data-pattern-id="{{ repo.name }}">
22+
<div class="card-image-cell">
23+
<h3 class="card-title">
24+
<a href="{{ repo.html_url }}" target="_blank">{{ repo.name }}</a>
25+
</h3>
26+
</div>
2527
</div>
26-
</div>
27-
<div class="caption">
28-
<div class="card-description">
29-
<p class="card-text">{{ repo.description }}</p>
30-
</div>
31-
<div class="card-text">
32-
<span data-toggle="tooltip" class="meta-info" title="{{ repo.stargazers_count }} stars">
33-
<span class="octicon octicon-star"></span> {{ repo.stargazers_count }}
34-
</span>
35-
<span data-toggle="tooltip" class="meta-info" title="{{ repo.forks_count }} forks">
36-
<span class="octicon octicon-git-branch"></span> {{ repo.forks_count }}
37-
</span>
38-
<span data-toggle="tooltip" class="meta-info" title="Last updated:{{ repo.updated_at }}">
39-
<span class="octicon octicon-clock"></span>
40-
<time datetime="{{ repo.updated_at }}" title="{{ repo.updated_at }}">{{ repo.updated_at | date: '%Y-%m-%d' }}</time>
41-
</span>
28+
<div class="caption">
29+
<div class="card-description">
30+
<p class="card-text">{{ repo.description }}</p>
31+
</div>
32+
<div class="card-text">
33+
<span data-toggle="tooltip" class="meta-info" title="{{ repo.stargazers_count }} stars">
34+
<span class="octicon octicon-star"></span> {{ repo.stargazers_count }}
35+
</span>
36+
<span data-toggle="tooltip" class="meta-info" title="{{ repo.forks_count }} forks">
37+
<span class="octicon octicon-git-branch"></span> {{ repo.forks_count }}
38+
</span>
39+
<span data-toggle="tooltip" class="meta-info" title="Last updated:{{ repo.updated_at }}">
40+
<span class="octicon octicon-clock"></span>
41+
<time datetime="{{ repo.updated_at }}" title="{{ repo.updated_at }}">{{ repo.updated_at | date: '%Y-%m-%d' }}</time>
42+
</span>
43+
</div>
4244
</div>
4345
</div>
4446
</div>
47+
{% endfor %}
4548
</div>
46-
{% endfor %}
47-
</div>
49+
</section>
4850

4951
</div>
5052
<script>

_includes/sidebar-post-nav.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h3 class="sidebar-title">Post Directory</h3>
1+
<h3>Post Directory</h3>
22
<div id="post-directory-module">
33
<section class="post-directory">
44
<!-- Links that trigger the jumping -->

assets/css/open-source.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525

2626
.jumbotron h1, .jumbotron .meta-info {
27-
color: #2b669a;
27+
color: #fff;
2828
}
2929

3030
.card .thumbnail {

blog.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: page
33
title: All My Blogs
4+
subtitle: <span class="mega-octicon octicon-clippy"></span>&nbsp;&nbsp; Take notes about everything new
45
menu: blog
56
css: ['blog-page.css']
67
---

0 commit comments

Comments
 (0)