New design for reals

This commit is contained in:
Rico Sta. Cruz 2017-08-29 02:26:33 +08:00
parent 6b144e6c33
commit df73df7669
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
3 changed files with 6 additions and 8 deletions

View File

@ -11,13 +11,11 @@ html_class: home
<div class='pages-list'>
{% for page in site.pages %}
{% if page.category == category %}
{% if page.type == article %}
<a href="{{base}}{{ page.url | remove: '.html' }}">
<a href="{{base}}{{ page.url }}">
<span class='title'>{{ page.title }}</span>
<span class='date'>{{ page.url | remove: '.html' | remove: '/' }}</span>
</a>
{% endif %}
{% endif %}
{% endfor %}
</div>
{% endfor %}

View File

@ -6,8 +6,8 @@
position: absolute;
right: 32px;
top: 80px;
width: 130px;
text-align: right;
.carbon-img {
margin-bottom: 16px;

View File

@ -1,6 +1,6 @@
---
full_title: "Cheatsheets — for web development and more"
description: "A collection of cheatsheets I've written."
layout: home
layout: 2017/home
type: website
---