32 lines
No EOL
1.1 KiB
HTML
32 lines
No EOL
1.1 KiB
HTML
{% extends 'base/base.html' %}
|
|
{% load static %}
|
|
{% block title %}
|
|
Welcome!
|
|
{% endblock %}
|
|
{% block includehere %}
|
|
<script src="{% static 'fontawesomefree/js/all.min.js' %}"></script>
|
|
<link rel="stylesheet" href="{% static 'viewblog.css' %}">
|
|
<link rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.5.1/build/styles/default.min.css">
|
|
<link rel="stylesheet" href="{% static 'pygments/tango.css' %}">
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% autoescape off %}
|
|
<div class="col s12">
|
|
{{ html }}
|
|
</div>
|
|
{% endautoescape %}
|
|
<script>
|
|
MathJax = {
|
|
tex: {
|
|
inlineMath: [['$', '$'], ['\\(', '\\)']]
|
|
},
|
|
svg: {
|
|
fontCache: 'global'
|
|
}
|
|
};
|
|
</script>
|
|
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.5.1/build/highlight.min.js"></script>
|
|
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
|
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
|
{% endblock %} |