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:
|
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
|
- Fix articles with inline html in them and/or links
|
||||||
|
|
||||||
MVP unneeded:
|
MVP unneeded:
|
||||||
|
|
|
@ -12,6 +12,9 @@ body {
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dt-subtitle {
|
||||||
|
margin-left:0px;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
{{#posts}}
|
{{#posts}}
|
||||||
<entry>
|
<entry>
|
||||||
<title>{{title}}</title>
|
<title>{{title}}</title>
|
||||||
<link href="{{link}}"/>
|
<link href="{{link}}?utm_source=web_feed"/>
|
||||||
<updated>{{iso_date}}</updated>
|
<updated>{{iso_date}}</updated>
|
||||||
<summary>{{summary}}</summary>
|
<summary>{{summary}}</summary>
|
||||||
<id>{{id}}</id>
|
<id>{{id}}</id>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{{#posts}}
|
{{#posts}}
|
||||||
<div>
|
<div>
|
||||||
<dt class="post-title-item"><a href="{{link}}">{{title}}</a> </dt>
|
<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>
|
<dd>
|
||||||
<p>{{summary}}</p>
|
<p>{{summary}}</p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
Loading…
Reference in a new issue