-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathblog_sidebar.html
44 lines (41 loc) · 1.55 KB
/
blog_sidebar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{% load i18n zinnia blog_tags %}
<div class="row row-cols-1">
<div class="col">
<form method="get" action="{% url 'zinnia:entry_search' %}" role="search">
<div class="input-group mb-3">
<input type="text" placeholder="{% trans "Search articles" %}" name="pattern" class="form-control" />
<button type="submit" class="btn btn-outline-secondary">
<i class="bi bi-search"></i>
</button>
</div>
</form>
</div>
<div class="col">
<div class="text-center">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-8646203626363069";
/* Dolphin Blog Sidebar Ad */
google_ad_slot = "9795528512";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="//pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</div>
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">{% trans "Blog tags" %}</h5>
{% get_tag_cloud %}
</div>
<div class="card-body">
<h5 class="card-title">{% trans "Blog series" %}</h5>
{% get_recent_blog_series 3 %}
<div class="float-end"><a href="{% url 'dolweb_blog_series_index' %}">{% trans "See all" %} »</a></div>
</div>
</div>
</div>
</div>