diff options
author | Alan Pearce | 2023-06-23 13:55:48 +0200 |
---|---|---|
committer | Alan Pearce | 2023-06-23 14:04:53 +0200 |
commit | a8267af2fc6026f3fdb4c5f69f4914bca8a20246 (patch) | |
tree | 68f8c94b369e710e5c23d6245c9b04fae86ee4d8 /themes | |
parent | 8d075e8abfb668622537979a3fcc8487a36a7d85 (diff) | |
download | website-a8267af2fc6026f3fdb4c5f69f4914bca8a20246.tar.lz website-a8267af2fc6026f3fdb4c5f69f4914bca8a20246.tar.zst website-a8267af2fc6026f3fdb4c5f69f4914bca8a20246.zip |
Remove redundant italic tag
Diffstat (limited to 'themes')
-rw-r--r-- | themes/bear/templates/page.html | 8 | ||||
-rw-r--r-- | themes/bear/templates/section.html | 8 | ||||
-rw-r--r-- | themes/bear/templates/taxonomy_single.html | 8 |
3 files changed, 9 insertions, 15 deletions
diff --git a/themes/bear/templates/page.html b/themes/bear/templates/page.html index 996f229..d91a47f 100644 --- a/themes/bear/templates/page.html +++ b/themes/bear/templates/page.html @@ -7,11 +7,9 @@ <h1>{{ page.title }}</h1> {%- if page.date %} <p> - <i> - <time datetime='{{ page.date | date(format='%+') }}' pubdate> - {{- page.date | date(format=config.extra.date_format) -}} - </time> - </i> + <time datetime='{{ page.date | date(format='%+') }}' pubdate> + {{- page.date | date(format=config.extra.date_format) -}} + </time> </p> {%- endif %} {%- endif %} diff --git a/themes/bear/templates/section.html b/themes/bear/templates/section.html index 838e001..f7567f2 100644 --- a/themes/bear/templates/section.html +++ b/themes/bear/templates/section.html @@ -12,11 +12,9 @@ {% for page in section.pages %} <li> <span> - <i> - <time datetime='{{ page.date | date(format='%+') }}' pubdate> - {{ page.date | date(format=config.extra.date_format) }} - </time> - </i> + <time datetime='{{ page.date | date(format='%+') }}' pubdate> + {{ page.date | date(format=config.extra.date_format) }} + </time> </span> <a href="{{ page.permalink }}">{{ page.title }}</a> </li> diff --git a/themes/bear/templates/taxonomy_single.html b/themes/bear/templates/taxonomy_single.html index 874e4d2..4fade3f 100644 --- a/themes/bear/templates/taxonomy_single.html +++ b/themes/bear/templates/taxonomy_single.html @@ -18,11 +18,9 @@ {% for page in term.pages %} <li> <span> - <i> - <time datetime='{{ page.date | date(format='%+') }}' pubdate> - {{ page.date | date(format=config.extra.date_format) }} - </time> - </i> + <time datetime='{{ page.date | date(format='%+') }}' pubdate> + {{ page.date | date(format=config.extra.date_format) }} + </time> </span> <a href="{{ page.permalink }}">{{ page.title }}</a> </li> |