almost to what I consider okay for MVN
This commit is contained in:
parent
04ffbdd9b7
commit
1c4f8fe871
4 changed files with 5 additions and 4 deletions
2
TODO
2
TODO
|
@ -1,6 +1,4 @@
|
|||
MVP necessary:
|
||||
- add utm stuff
|
||||
- make post list datetime elem in dd so html spec is happy (need css so it can be repositioned back to the right)
|
||||
- Fix articles with inline html in them and/or links
|
||||
|
||||
MVP unneeded:
|
||||
|
|
|
@ -12,6 +12,9 @@ body {
|
|||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.dt-subtitle {
|
||||
margin-left:0px;
|
||||
}
|
||||
|
||||
a {
|
||||
font-weight: bold;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
{{#posts}}
|
||||
<entry>
|
||||
<title>{{title}}</title>
|
||||
<link href="{{link}}"/>
|
||||
<link href="{{link}}?utm_source=web_feed"/>
|
||||
<updated>{{iso_date}}</updated>
|
||||
<summary>{{summary}}</summary>
|
||||
<id>{{id}}</id>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{{#posts}}
|
||||
<div>
|
||||
<dt class="post-title-item"><a href="{{link}}">{{title}}</a> </dt>
|
||||
<time datetime="{{{iso_date}}}">{{date}}</time>
|
||||
<dd class="dt-subtitle"><time datetime="{{{iso_date}}}">{{date}}</time></dd>
|
||||
<dd>
|
||||
<p>{{summary}}</p>
|
||||
</dd>
|
||||
|
|
Loading…
Reference in a new issue