blob: 7e504fc8d96e2f277392927816c2c59650aac7fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %}
{% block otherlinks %}
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,600">
{% endblock %}
{% block bodyclass %}bg{% endblock %}
{% block body %}
{% include "profile/person-info.html" %}
<div class="body">
<form method="post" class="search" action="/blog/query">
{% csrf_token %}
<input type="text" name="q" placeholder="乙肝甲肝各种肝炎" class="queinput">
<input type="submit" value="提问" class="quebtn">
</form>
<div class="site_logo"></div>
</div>
{% endblock %}
|