diff --git a/sass/main.scss b/sass/main.scss index 6b55e595..5d25308f 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -84,6 +84,10 @@ footer { #badges a { margin: 20px auto; } + + .news_content_image { + flex-wrap: wrap; + } } @media (prefers-color-scheme: dark) { @@ -207,11 +211,17 @@ footer { img { max-width: 90%; } +.news_content_image { + display: flex; + align-items: flex-start; + justify-content: space-between; +} .news_image { max-height: 520px; margin-left: 0.5rem; display: inline-block; vertical-align: top; + width: auto; } .news_content { display: inline-block; diff --git a/templates/news.html b/templates/news.html index 61a1c9c3..4edb5436 100644 --- a/templates/news.html +++ b/templates/news.html @@ -15,10 +15,14 @@ {% set s = get_section(path=section) %} {% for post in s.pages %}
 {{ post.date | date(format='%B %e, %Y') }} 
-
{{ post.content | safe }}
+
+{% if post.content %} +
{{ post.content | safe }}
+{% endif %} {% for photo in post.assets %} {% endfor %} +
{% endfor %} {% endfor %}