28 lines
443 B
HTML
28 lines
443 B
HTML
|
|
{% extends "templates/web.html" %}
|
|
|
|
{% block breadcrumbs %}
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
|
|
<h1>{{ title }}</h1>
|
|
{% endblock %}
|
|
|
|
{% block page_content %}
|
|
|
|
{%- if introduction -%}
|
|
<div>{{ introduction }}</div>
|
|
{% endif %}
|
|
|
|
{%- if doc.enable_admission_application -%}
|
|
<p>
|
|
<a class='btn btn-primary'
|
|
href='/student-applicant'>
|
|
{{ _("Apply Now") }}</a>
|
|
</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|