<div class="posts">
{% for category in site.categories %}
- <h3 class="date">{{ category | first }}</h3>
+ <h2 class="date">{{ category | first }}</h2>
<ul class="posts">
{% for posts in category %}
{% for post in posts %}
{% capture day %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nday %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if day != nday %}
- <h3 class="date">{{ post.date | date: "%Y" }}</h3>
+ <h2 class="date">{{ post.date | date: "%Y" }}</h2>
{% endif %}
<li>
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
}
.nav ul, .nav-index ul {
text-transform: uppercase;
- font-family:lgb;
+ font-family:lg;
line-height:1.4em;
}
.nav ul, .nav li, .nav-index ul, .nav-index li {
margin-bottom:0.1em;
}
.nav h3.header {
+ margin-bottom:0.25em;
}
.nav h3.header a, .nav-index h3.header a {
- color:#999;
+ color:#aaa;
/* border-bottom:4px solid #999;*/
}
.nav a, .nav-index a {
title: Performance
---
-<ul class="thumbs">
+<ul class="posts">
{% for post in site.categories.performance %}
{% if post.url %}
<li>
- <a href="{{ site.baseurl }}{{ post.url }}">
- <span class="img"><img src="{{ post.thumb }}" /></span>
+ <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
+ <!-- <a href="{{ site.baseurl }}{{ post.url }}"> -->
+ <!-- <span class="img"><img src="{{ post.thumb }}" /></span> -->
<!-- <br />
{{ post.title }} -->
- </a>
+ <!-- </a> -->
</li>
{% endif %}
title: Projects
---
-<ul class="thumbs">
+<ul class="posts">
{% for post in site.categories.projects %}
{% if post.url %}
<li>
- <a href="{{ site.baseurl }}{{ post.url }}">
- <div class="img"><img src="{{ post.thumb }}" /></div>
+ <!-- <a href="{{ site.baseurl }}{{ post.url }}"> -->
+ <!-- <div class="img"><img src="{{ post.thumb }}" /></div> -->
<!-- <br />
{{ post.title }} -->
- </a>
+ <!-- </a> -->
+ <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
</li>
{% endif %}
title: Works
---
-<ul class="thumbs">
+<!-- <ul class="thumbs"> -->
+ <ul class="posts">
{% for post in site.categories.works %}
{% if post.url %}
<li>
- <a href="{{ site.baseurl }}{{ post.url }}">
- <span class="img"><img src="{{ post.thumb }}" /></span>
+ <!-- <a href="{{ site.baseurl }}{{ post.url }}"> -->
+ <!-- <span class="img"><img src="{{ post.thumb }}" /></span> -->
<!-- <br />
{{ post.title }} -->
- </a>
+ <!-- </a> -->
+ <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
</li>
{% endif %}