Use class instead of id for CSS specificity ❤️

This commit is contained in:
Joel Glovier 2014-02-15 23:16:47 -05:00
부모 a11f01784a
커밋 6773307237
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -2,8 +2,9 @@
layout: default
---
<div id="home">
<h1>Blog Posts</h1>
<div class="home">
<ul class="posts">
{% for post in site.posts %}
<li><span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span> <a class="post-link" href="{{ post.url }}">{{ post.title }}</a></li>