Skip to content
Snippets Groups Projects
Commit c99a15b1 authored by Aishik Nath's avatar Aishik Nath
Browse files

Blog ready

parent e6bfd842
No related branches found
No related tags found
1 merge request!2Blog Ready
Pipeline #415072 failed
{% extends "layout.html" %}
{% block title %}Blogs{% endblock %}
{% block lead %}Document the dates you worked on your project. This should be a detailed account of the work done each day for your project.{% endblock %}
{% block page_content %}
<link href="{{ url_for('static', filename = 'blog.css') }}" rel="stylesheet">
<div class="d-flex gap-3">
{% for blog in bloglist: %}
<div class="card-mb-4 col-3">
<div class="card-body">
<h5 class="card-title">{{ bloglist[blog]['title'] }}</h5>
<p class="card-text">{{ bloglist[blog]['author'] }}</p>
<a class="btn btn-primary" href="{{ url_for('blog', blog=blog) }}">Read</a>
</div>
</div>
{% endfor %}
</div>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment