Files
wixon_blog/templates/index.html

33 lines
1.2 KiB
HTML
Raw Normal View History

2023-08-02 17:10:20 +09:00
{% extends 'base.html' %}
{% block content %}
2023-08-02 17:25:22 +09:00
<div class="uk-container">
2023-08-02 17:10:20 +09:00
<div class="grid-container masonry-grid">
2023-08-02 17:25:22 +09:00
{% for post in posts %}
2023-08-02 17:10:20 +09:00
<div class="blog-card uk-card uk-card-default">
2023-08-02 17:18:47 +09:00
<div class="uk-card-media-top">
2023-08-02 17:10:20 +09:00
<img src="{{ post.thumbnail_img }}" alt="{{ post.title }}">
2023-08-02 17:20:54 +09:00
</div>
2023-08-02 17:10:20 +09:00
<div class="uk-card-body">
<h3 class="uk-card-title">{{ post.title }}</h3>
<!-- Truncate the contents to 100 characters, removing any HTML tags -->
<p>{{ post.contents | striptags | truncate(100) }}</p>
<a href="#" class="uk-button uk-button-text">Read more</a>
</div>
</div>
{% endfor %}
</div>
</div>
<script>
$(document).ready(function () {
$('.masonry-grid').masonry({
// options...
itemSelector: '.blog-card',
columnWidth: '.blog-card',
percentPosition: true
});
});
</script>
{% endblock %}