Skip to content
Permalink
31169670bb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 30 lines (29 sloc) 1017 Bytes
{% extends "base.twig" %}
{% block content %}
<div class="subPage subPage--{{ post.get_field('wpcf-parent') }}">
<nav class="subPageNav u-container">
<a href="/{{ post.get_field('wpcf-parent') }}" class="subPageNav__link">BACK</a>
</nav>
<div class="u-container">
<main class="subPageMain">
<section class="subPageBody">
<div class="subPageBody__inner">
<h1>{{ post.parent.title }}</h1>
<h1 class="postTitle">{{post.title}}</h1>
{{post.content}}
</div>
</section>
<aside class="subPageAside">
<div class="subPageAside__inner">
<figure class="subPageAside__Image">
<img src="{{post.get_field('wpcf-side-img')}}" alt="">
</figure>
<a href="#" class="subPageAside__Banner">
<h3>Learn more about the Undergraduate Application Process!</h3>
</a>
</div>
</aside>
</main>
</div>
</div>
{% endblock %}