LoginSignup
0
0

More than 1 year has passed since last update.

Djangoスタートアップ その7(テンプレート拡張編)

Last updated at Posted at 2023-02-26

base.htmlの作成

project
└───templates
    └───myApp
            base.html
            post_list.html

base.htmlはひな形
{% block content %}{% endblock %}までをほかのtemplateファイルで実装する

project/template/appName/base.html
<body>
    <div class="page-header">
        <h1><a href="/">Django Girls Blog</a></h1>
    </div>
    <div class="content container">
        <div class="row">
            <div class="col-md-8">
            {% block content %}
            {% endblock %}
            </div>
        </div>
    </div>
</body>
project/template/appName/post_list.html
{% extends 'blog/base.html' %}★base.htmlを読み込み

{% block content %}★ひな形内のみ記述
    {% for post in posts %}
        <div class="post">
            <div class="date">
                {{ post.published_date }}
            </div>
            <h2><a href="">{{ post.title }}</a></h2>
            <p>{{ post.text|linebreaksbr }}</p>
        </div>
    {% endfor %}
{% endblock %}

参考記事

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0