fossbook 0.2.12 → 0.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fossbook",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "A Markdown-based authoring and web-publishing tool for comics, illustrated stories, and articles",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -521,6 +521,10 @@
521
521
  color: grey;
522
522
  }
523
523
 
524
+ ul.posts .meta {
525
+ margin-left: 0.50rem;
526
+ }
527
+
524
528
  /* Posts */
525
529
  article .title {
526
530
  margin-bottom: 1em;
@@ -35,7 +35,7 @@
35
35
  .map(
36
36
  (post) => `<li class="post">
37
37
  <a href="${page.config.basePath}${post.path}">${post.title}</a><span class="meta">
38
- ${new Date(post.date).toDateString()}</span>
38
+ ${page.formatDate(new Date(post.date))}</span>
39
39
  </li>`,
40
40
  )
41
41
  .join("")}