-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-academics.php
53 lines (35 loc) · 1.11 KB
/
page-academics.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/*
Template Name: Academics
*/
get_header();
?>
<?php the_showcase(); ?>
<div class="wrap group two-column academics">
<div class="quarter left-menu">
<div class="menu-primary">
<h5 class="menu-title">Academics</h5>
<?php wp_nav_menu( array( 'theme_location' => 'academics-primary', 'menu_class' => 'nav-menu' ) ); ?>
</div>
<div class="menu-buttons"><?php wp_nav_menu( array( 'theme_location' => 'academics-buttons', 'menu_class' => 'nav-menu' ) ); ?></div>
</div>
<div class="three-quarter">
<?php
while ( have_posts() ) : the_post(); ?>
<h1><?php the_title() ?></h1>
<div class="entry-content">
<?php the_content(); ?>
</div>
<?php
endwhile;
?>
<div class="bg-grey-light" style="padding: 5px 10px; border: 1px solid #888; margin: 10px 0;">MA = Major MI = Minor PA = Pre-Professional Advising T = Teaching Certification</div>
<div class="group area-tabs">
<?php list_area_category() ?>
</div>
</div>
</div>
<div class="wrap">
<?php the_photo_grid(); ?>
</div>
<?php get_footer(); ?>