12 lines
246 B
HTML
12 lines
246 B
HTML
{% extends "public/base.html" %}
|
|
{% load static %}
|
|
|
|
{% block raw_content %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "public/css/default.css" %}">
|
|
<div id="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
{% endblock %}
|