summaryrefslogtreecommitdiff
path: root/themes/gamerdonkey-theme
diff options
context:
space:
mode:
Diffstat (limited to 'themes/gamerdonkey-theme')
-rw-r--r--themes/gamerdonkey-theme/static/css/style.css7
-rw-r--r--themes/gamerdonkey-theme/templates/article.html2
2 files changed, 7 insertions, 2 deletions
diff --git a/themes/gamerdonkey-theme/static/css/style.css b/themes/gamerdonkey-theme/static/css/style.css
index 671df42..bb5fb78 100644
--- a/themes/gamerdonkey-theme/static/css/style.css
+++ b/themes/gamerdonkey-theme/static/css/style.css
@@ -10,7 +10,6 @@ body {
a {
color: white;
- font-weight: bold;
}
ul {
@@ -24,6 +23,7 @@ header#banner {
nav#menu {
width: 100%;
text-align: center;
+ font-weight: bold;
}
nav#menu ul {
@@ -42,6 +42,11 @@ nav#menu ul li:last-child::after {
content: '';
}
+img {
+ max-width: 100%;
+ height: auto;
+}
+
footer#contentinfo {
font-size: 0.7em;
text-align: center;
diff --git a/themes/gamerdonkey-theme/templates/article.html b/themes/gamerdonkey-theme/templates/article.html
index d339132..624a048 100644
--- a/themes/gamerdonkey-theme/templates/article.html
+++ b/themes/gamerdonkey-theme/templates/article.html
@@ -6,5 +6,5 @@
<meta property="og:url" content="{{ SITEURL }}/{{ article.url }}" />
<meta property="og:title" content="{{ article.title }}" />
<meta property="og:description" content="{{ article.summary | striptags }}" />
- <meta property="og:image" content="{{ SITEURL }}/images/{% if article.opengraph_image is defined %}{{ article.opengraph_image }}{% else %}gamerdonkey_g_logo_og.png{% endif %}" />
+ <meta property="og:image" content="{% if article.opengraph_image is defined %}{{ SITEURL }}/{{ article.url }}{{ article.opengraph_image }}{% else %}{{ SITEURL }}/images/gamerdonkey_g_logo_og.png{% endif %}" />
{% endblock %}