Fixed markdown template
This commit is contained in:
parent
f2ee9bfb04
commit
e28042c330
2 changed files with 11 additions and 3 deletions
|
@ -173,6 +173,11 @@ footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (min-width: @screen-sm-min) {
|
||||||
|
& + div {
|
||||||
|
margin-top: 65px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* @end content base */
|
/* @end content base */
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,11 @@
|
||||||
{% block pageTitle %}{{ page_title }}{% endblock %}
|
{% block pageTitle %}{{ page_title }}{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="container">
|
<div class="container markdown-content">
|
||||||
{{ markdown_content | safe }}
|
{{ markdown_content | safe }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$('.header h1').text($('.markdown-content h1').text());
|
||||||
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Reference in a new issue