Change blog post style
This commit is contained in:
parent
793bcee491
commit
cef059ea9d
2 changed files with 34 additions and 5 deletions
|
@ -206,6 +206,14 @@
|
||||||
background-color: #f3f3f3;
|
background-color: #f3f3f3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-full {
|
||||||
|
.post-title {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-family: serif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 799px) {
|
@media (max-width: 799px) {
|
||||||
.left-sidebar-header {
|
.left-sidebar-header {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -230,6 +238,9 @@
|
||||||
padding-left: 5%;
|
padding-left: 5%;
|
||||||
padding-right: 5%;
|
padding-right: 5%;
|
||||||
}
|
}
|
||||||
|
.post-title {
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 800px) {
|
@media (min-width: 800px) {
|
||||||
.left-sidebar-item {
|
.left-sidebar-item {
|
||||||
|
@ -281,4 +292,18 @@
|
||||||
border-right: 1.4px solid lightgray;
|
border-right: 1.4px solid lightgray;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-full {
|
||||||
|
width: 80%;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
|
||||||
|
.content-description {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-title {
|
||||||
|
font-size: 2.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -8,14 +8,15 @@
|
||||||
{% include "comments/media-css.html" %}
|
{% include "comments/media-css.html" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block header %}
|
{% block title_row %}
|
||||||
{% if post.is_editable_by(request.user) %}
|
{% endblock %}
|
||||||
<div class="title-line-action">[<a href="{{ url('admin:judge_blogpost_change', post.id) }}">{{ _('Edit') }}</a>]</div>
|
|
||||||
{% endif %}
|
{% block title_ruler %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<div class="post-full">
|
<div class="post-full">
|
||||||
|
<div class="post-title">{{ title }}</div>
|
||||||
<div class="time">
|
<div class="time">
|
||||||
{% with authors=post.authors.all() %}
|
{% with authors=post.authors.all() %}
|
||||||
{% if authors %}
|
{% if authors %}
|
||||||
|
@ -25,6 +26,9 @@
|
||||||
<span class="post-time">
|
<span class="post-time">
|
||||||
{% trans time=post.publish_on|date(_("N j, Y, g:i a")) %} posted on {{ time }}{% endtrans %}
|
{% trans time=post.publish_on|date(_("N j, Y, g:i a")) %} posted on {{ time }}{% endtrans %}
|
||||||
</span>
|
</span>
|
||||||
|
{% if post.is_editable_by(request.user) %}
|
||||||
|
<span> [<a href="{{ url('admin:judge_blogpost_change', post.id) }}">{{ _('Edit') }}</a>]</span>
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="body content-description">
|
<div class="body content-description">
|
||||||
{% cache 86400 'post_content' post.id MATH_ENGINE %}
|
{% cache 86400 'post_content' post.id MATH_ENGINE %}
|
||||||
|
|
Loading…
Reference in a new issue