我的中心標籤頁導航

  1. 新頁面userbase.html,用<ul ><li role="presentation"> 實現標籤頁導航。
    <ul class="nav nav-tabs">
      <li role="presentation"><a href="#">Home</a></li>
      <li role="presentation"><a href="#">Profile</a></li>
      <li role="presentation"><a href="#">Messages</a></li>
    </ul>

  2. 讓userbase.html繼承base.html。
    重寫title,head,main塊.
    將上述<ul>的樣式放在head塊,<ul>放在main塊中.
    定義新的塊user。

  3. 讓上次做業完成的我的中心頁面,繼承userbase.html,原我的中心就自動有了標籤頁導航。

  4. 製做我的中心的三個子頁面,重寫userbase.html中定義的user塊,分別用於顯示問答、評論、我的信息。

  5. 思考 如何實現點標籤頁導航到達不一樣的我的中心子頁面。
{% extends "base.html" %}
{% block title%}我的中心{% endblock %}
{% block head %}
<style>
    nav_ul li{
        list-style: none;
        float: left;
        margin: 10px;
    }
</style>
{% endblock %}
{% block main %}
<ul class="nav_ul">
    <li role="presentation"><a href="#" >問題</a></li>
    <li role="presentation"><a href="#" >評論</a></li>
    <li role="presentation"><a href="#" >我的中心</a></li>
</ul>

 

{% extends "我的中心.html" %}

{% block usercenterbody %}
    <div class="page-header">
        <h3><span class="glyphicon glyphicon-user" aria-hidden="true"></span>{{ username }}<br><small>問答<span class="badge>"></span> </small> </h3>
        <ul class="list-group"style="margin:10px">
            {% for foo in comments %}
                <li class="list-group-item">
                    <span class="glyphicon glyphicon-heart-empty" aria-hidden="true"></span>
                    <a href="#">{{ foo.author.username }}</a>
                    <span class="badge">{{ foo.creat_time }}</span>
                    <p style="align-content: center">{{ foo.detail }}</p>
                </li>
            {% endfor %}
        </ul>
    </div>

    <div class="page-header">
        <h3><span class="glyphicon glyphicon-user" aria-hidden="true"></span>{{ user }}<br><small>評論<span class="badge>"></span> </small> </h3>
        <ul class="list-group"style="margin:10px">
            {% for foo in comments %}
                <li class="list-group-item">
                    <span class="glyphicon glyphicon-heart-empty" aria-hidden="true"></span>
                    <a href="#">{{ foo.author.username }}</a>
                    <span class="badge">{{ foo.creat_time }}</span>
                    <p style="align-content: center">{{ foo.detail }}</p>
                </li>
            {% endfor %}
        </ul>

    </div>

    <div class="page-header">
        <h3><span class="glyphicon glyphicon-user" aria-hidden="true"></span>{{ user }}<br><small>我的資料<span class="badge>"></span> </small> </h3>
        <ul class="list-group"style="margin:10px">
            <li class="list-group-item">user:{{ username }}</li>
            <li class="list-group-item">time:</li>
            <li class="list-group-item">nick:</li>
        </ul>
    </div>
{% endblock %}
相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息