-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
69 lines (65 loc) · 3.31 KB
/
front-page.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php get_header() ?>
<div class="page-banner">
<div class="page-banner__bg-image" style="background-image: url(<?php echo get_theme_file_uri('/images/hero.jpg') ?>);"></div>
<div class="page-banner__content container t-center c-white">
<h1 class="headline headline--large">Welcome!</h1>
<h2 class="headline headline--small">We think you’ll like it here!</h2>
<h3>Find a major for you <i class="fa fa-level-down" aria-hidden="true"></i> </h3>
<a href="<?php echo get_post_type_archive_link('program'); ?>" class="btn btn--large btn--blue">Find Your Major</a>
</div>
</div>
<div class="full-width-split group">
<div class="full-width-split__one">
<div class="full-width-split__inner">
<h2 class="headline headline--small-plus t-center">Upcoming Events</h2>
<?php
home_events();
?>
<p class="t-center no-margin"><a href="<?php echo get_post_type_archive_link('event'); ?>" class="btn btn--blue">View All Events</a></p>
</div>
</div>
<div class="full-width-split__two">
<div class="full-width-split__inner">
<h2 class="headline headline--small-plus t-center">From Our Blogs</h2>
<?php
home_posts();
?>
<p class="t-center no-margin"><a href="<?php echo site_url('/blog'); ?>" class="btn btn--yellow">View All Blog Posts</a></p>
</div>
</div>
</div>
<div class="hero-slider">
<div data-glide-el="track" class="glide__track">
<div class="glide__slides">
<div class="hero-slider__slide" style="background-image: url(<?php echo get_theme_file_uri('/images/software-slider.jpg') ?>);">
<div class="hero-slider__interior container">
<div class="hero-slider__overlay">
<h2 class="headline headline--medium t-center">Software Development</h2>
<p class="t-center">Focusing on computer science and software development.</p>
<p class="t-center no-margin"><a href="<?php echo site_url('/software-development'); ?>" class="btn btn--blue">Learn more</a></p>
</div>
</div>
</div>
<div class="hero-slider__slide" style="background-image: url(<?php echo get_theme_file_uri('/images/technician-slider.jpg') ?>);">
<div class="hero-slider__interior container">
<div class="hero-slider__overlay">
<h2 class="headline headline--medium t-center">Computer Technician</h2>
<p class="t-center">Focus on building and maintaining computer equipment.</p>
<p class="t-center no-margin"><a href="<?php echo site_url('/computer-technician'); ?>" class="btn btn--blue">Learn more</a></p>
</div>
</div>
</div>
<div class="hero-slider__slide" style="background-image: url(<?php echo get_theme_file_uri('/images/network-slider.jpg') ?>);">
<div class="hero-slider__interior container">
<div class="hero-slider__overlay">
<h2 class="headline headline--medium t-center">Network Management</h2>
<p class="t-center">Focus on building and maintaining computer networks.</p>
<p class="t-center no-margin"><a href="<?php echo site_url('/network-management'); ?>" class="btn btn--blue">Learn more</a></p>
</div>
</div>
</div>
</div>
<div class="slider__bullets glide__bullets" data-glide-el="controls[nav]"></div>
</div>
</div>
<?php get_footer() ?>