Compare commits

...

6 commits
v1.3 ... main

4 changed files with 30 additions and 2 deletions

View file

@ -1,3 +1,18 @@
## [v1.3.3](https://git.hadan-it.com/stiebke/hugo-internet-weblog/releases/tag/v1.3.3) - 2025-03-03
* ENHANCEMENTS
* Set Referrer-Policy Meta-Header (#39)
## [v1.3.2](https://git.hadan-it.com/stiebke/hugo-internet-weblog/releases/tag/v1.3.2) - 2025-02-19
* ENHANCEMENTS
* Added missing styling for ol elements in articles class (#38)
## [v1.3.1](https://git.hadan-it.com/stiebke/hugo-internet-weblog/releases/tag/v1.3.1) - 2025-02-11
* BUGFIXES
* Fix to eliminate the rest of Flickr API in layouts/partials/custom_image_handler.html (#37)
## [v1.3](https://git.hadan-it.com/stiebke/hugo-internet-weblog/releases/tag/v1.3) - 2025-02-11
* ENHANCEMENTS

View file

@ -1,4 +1,4 @@
<script type="text/javascript">
<!--<script type="text/javascript">
// @summary: jquery implementation
$(function() {
@ -8,4 +8,4 @@
});
});
</script>
</script>-->

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

View file

@ -78,6 +78,12 @@ article > ul > li {
color: var(--joshin-primary-color-500);
}
article > ol > li {
font-size: 18px;
line-height: 28px;
color: var(--joshin-primary-color-500);
}
/* Navigation */
nav {
@ -262,6 +268,12 @@ article.photo img:hover {
padding: 0 0 0 6px;
}
.post-group-item ol {
list-style-type: none;
margin: 0;
padding: 0 0 0 6px;
}
/* Footer */
footer {