Collapsable posts

This commit is contained in:
Jose Palazon 2024-09-17 10:34:59 +01:00
parent 79a1de9968
commit 1ae070a4dd
2 changed files with 28 additions and 1 deletions

View file

@ -226,3 +226,17 @@ body.dark-mode .content textarea {
color: #e0e0e0; color: #e0e0e0;
border: 1px solid #555; border: 1px solid #555;
} }
.toggle-content {
background: none;
border: none;
color: #377ba8;
cursor: pointer;
font-size: 0.85em;
margin-left: 1em;
transition: color 0.3s;
}
.toggle-content:hover {
color: #2c5f8a;
}

View file

@ -18,11 +18,24 @@
{% if g.user['id'] == post['author_id'] %} {% if g.user['id'] == post['author_id'] %}
<a class="action" href="{{ url_for('blog.update', id=post['id']) }}">Edit</a> <a class="action" href="{{ url_for('blog.update', id=post['id']) }}">Edit</a>
{% endif %} {% endif %}
<button class="toggle-content" onclick="toggleContent(this)">Expand</button>
</header> </header>
<p class="body">{{ post['body'] }}</p> <p class="body" style="display: none;">{{ post['body'] }}</p>
</article> </article>
{% if not loop.last %} {% if not loop.last %}
<hr> <hr>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<script>
function toggleContent(button) {
const body = button.parentElement.nextElementSibling;
if (body.style.display === "none") {
body.style.display = "block";
button.textContent = "Collapse";
} else {
body.style.display = "none";
button.textContent = "Expand";
}
}
</script>
{% endblock %} {% endblock %}