|
@@ -18,13 +18,14 @@ tag_paragraphs=true
|
|
|
inline_tags = ["i", "em", "b", "strong","u", "s", "a", "span"]
|
|
|
date_format="%d %B %Y"
|
|
|
format="""
|
|
|
-<div class="postcell" id="{__num__}">
|
|
|
- <div class="timestamp">{__timestamp__}
|
|
|
+<article id="{__num__}">
|
|
|
+ <h4>
|
|
|
+ <time>{__timestamp__}</time>
|
|
|
<a href=#{__num__}>(#{__num__})</a>
|
|
|
- </div>
|
|
|
- <div class="message">{__msg__}</div>
|
|
|
+ </h4>
|
|
|
+ {__msg__}
|
|
|
{__btn__}
|
|
|
-</div>
|
|
|
+</article>
|
|
|
"""
|
|
|
|
|
|
[post.buttons]
|
|
@@ -55,17 +56,19 @@ short-bio= "Your self-description. Anything longer than 150 characters is trunca
|
|
|
list= ["https://likho.neocities.org/microblog/meta.json"]
|
|
|
date_format = "%Y %b %d"
|
|
|
format="""
|
|
|
-<div class="postcell">
|
|
|
- <img src="{__avatar__}" alt="Avatar" class="avatar">
|
|
|
- <span class="wrapper"">
|
|
|
- <div class="handle">
|
|
|
- <a href="{__url__}">{__handle__}</a>
|
|
|
- </div>
|
|
|
- <div class="last-updated">Last Update: {__lastupdated__}</div>
|
|
|
- <span class="post-count">Posts: {__post_count__}</span>
|
|
|
- </span>
|
|
|
+<article>
|
|
|
+ <figure>
|
|
|
+ <img src="{__avatar__}" alt="Avatar" class="avatar">
|
|
|
+ <figcaption>
|
|
|
+ <ul>
|
|
|
+ <li><a href="{__url__}" title="microblog of {__handle__}">{__handle__}</a></li>
|
|
|
+ <li><time>Last Update: {__lastupdated__}</time></li>
|
|
|
+ <li>Posts: {__post_count__}</li>
|
|
|
+ </ul>
|
|
|
+ </figcaption>
|
|
|
+ </figure>
|
|
|
<p class="short-bio">{__shortbio__}</p>
|
|
|
-</div>
|
|
|
+</article>
|
|
|
"""
|
|
|
|
|
|
# internally link avatars - avoids hotlinks
|