2016-09-15 09:18:13 +00:00
|
|
|
|
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
|
2016-09-15 11:14:25 +00:00
|
|
|
<h1>{{ title }}</h1>
|
2016-09-15 09:18:13 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
|
|
|
|
{%- if introduction -%}
|
|
|
|
<div>{{ introduction }}</div>
|
2020-06-17 07:08:31 +00:00
|
|
|
{% endif %}
|
2016-09-15 09:18:13 +00:00
|
|
|
|
2020-06-17 07:08:31 +00:00
|
|
|
{%- if doc.enable_admission_application -%}
|
2016-09-15 09:18:13 +00:00
|
|
|
<p>
|
|
|
|
<a class='btn btn-primary'
|
2020-06-17 07:08:31 +00:00
|
|
|
href='/student-applicant'>
|
2016-09-15 09:18:13 +00:00
|
|
|
{{ _("Apply Now") }}</a>
|
|
|
|
</p>
|
2016-09-15 10:06:14 +00:00
|
|
|
{% endif %}
|
2016-09-15 09:18:13 +00:00
|
|
|
|
|
|
|
{% endblock %}
|