5
5
{% block body %}
6
6
7
7
{% load static %}
8
- < div class ="uk-grid uk-margin-top ">
9
- < div class ="uk-container uk-container-center uk-section-muted ">
8
+ < div class ="uk-grid uk-margin-top uk-margin-bottom ">
9
+ < div class ="uk-width-1-1 ">
10
+ < div class ="uk-container uk-container-center uk-section-muted uk-align-center ">
10
11
< article class ="uk-article uk-padding-small ">
11
12
12
13
< h2 class ="uk-article-title uk-text-bold ">
13
14
{{ article.title }}
14
15
</ h2 >
15
16
16
- {% with authors=article.all_authors %}
17
- {% if authors %}
18
- < div >
19
- < span class ="uk-text-break ">
20
- < span class ="uk-text-bold "> Authors:</ span > {{ authors }}
21
- </ span >
22
- </ div >
23
- {% endif %}
24
- {% endwith %}
25
-
26
17
{% if article.year %}
27
18
< div >
28
- < span class ="uk-text-bold "> Published:</ span >
19
+ < span class ="uk-text-bold uk-text-emphasis "> Published:</ span >
29
20
{% if article.day %}{{ article.day }}{% endif %}
30
21
{% if article.month %}{{ article.month_name }}{% endif %}
31
22
{{ article.year }}
@@ -35,15 +26,25 @@ <h2 class="uk-article-title uk-text-bold">
35
26
{% if article.publisher_text %}
36
27
< div >
37
28
< span class ="uk-text-break ">
38
- < span class ="uk-text-bold "> Published in:</ span > {{ article.publisher_text }}
29
+ < span class ="uk-text-bold uk-text-emphasis "> Published in:</ span > {{ article.publisher_text }}
39
30
</ span >
40
31
</ div >
41
32
{% endif %}
42
33
34
+ {% with authors=article.all_authors %}
35
+ {% if authors %}
36
+ < div >
37
+ < span class ="uk-text-break ">
38
+ < span class ="uk-text-bold uk-text-emphasis "> Authors:</ span > {{ authors }}
39
+ </ span >
40
+ </ div >
41
+ {% endif %}
42
+ {% endwith %}
43
+
43
44
{% with tags=article.tags.all %}
44
45
{% if tags %}
45
46
< div >
46
- < span class ="uk-text-bold "> Tags:</ span >
47
+ < span class ="uk-text-bold uk-text-emphasis "> Tags:</ span >
47
48
{% for tag in tags %}
48
49
{{ tag.tagname }}
49
50
{% endfor %}
@@ -54,7 +55,9 @@ <h2 class="uk-article-title uk-text-bold">
54
55
{% if article.abstract %}
55
56
< div class ="uk-margin-medium ">
56
57
< span class ="uk-text-break ">
57
- < span class ="uk-text-bold "> Abstract:</ span > {{ article.abstract }}
58
+ < span class ="uk-text-bold "> Abstract:</ span >
59
+ < br >
60
+ {{ article.abstract }}
58
61
</ span >
59
62
</ div >
60
63
{% endif %}
@@ -69,6 +72,7 @@ <h2 class="uk-article-title uk-text-bold">
69
72
70
73
</ article >
71
74
</ div >
75
+ </ div >
72
76
73
77
</ div >
74
78
{% endblock %}
0 commit comments