10 lines
198 B
HTML
10 lines
198 B
HTML
<!DOCTYPE html>
|
|
{% extends 'head.html' %}
|
|
{% include 'logo.html' %}
|
|
{% include 'header.html' %}
|
|
|
|
{% block content %}
|
|
<h2>Hello! You're currently accessing {{ session.school }}.</h2>
|
|
|
|
{% endblock %}
|