figbert.com-website

[ACTIVE] the website and home of figbert on the clearnet
git clone git://git.figbert.com/figbert.com-website.git
Log | Files | Refs | README | LICENSE

commit 2ade0f38aa50e9bfab7a740be03f13345c76a9f6
parent fa49af1ac524ee6aba378d5b831cb1322fa98bcc
Author: FIGBERT <figbert@figbert.com>
Date:   Fri,  1 Jan 2021 01:14:18 -0800

Remove indieweb classes from article.html

Diffstat:
Mtemplates/article.html | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/templates/article.html b/templates/article.html @@ -53,13 +53,13 @@ {% endblock %} {% block content %} - <div class="h-entry"> - <h1 class="p-name"><a class="u-url u-uid" href="{{ current_url }}" rel="me">{{ page.title }}</a></h1> + <div> + <h1><a href="{{ current_url }}">{{ page.title }}</a></h1> <small> - <time class="dt-published" datetime="{{ page.date }}">{{ page.date | date(format="%B %d, %Y") }}</time> - by <a class="p-author h-card" href="{{ config.base_url }}">FIGBERT</a> + <time datetime="{{ page.date }}">{{ page.date | date(format="%B %d, %Y") }}</time> + by <a href="{{ config.base_url }}">FIGBERT</a> </small> - <div class="e-content">{{ page.content | safe }}</div> + <div>{{ page.content | safe }}</div> </div> {% endblock content %}