-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive-launch-track.php
47 lines (45 loc) · 1.31 KB
/
archive-launch-track.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
<?php
/**
* Page Template: Launch Academy Home
*The template for displaying Launch Track archives
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package HackCville_5.0
*/
get_header();
// Import Launch Switcher Menu
$template_url = get_template_directory() . '/template-parts/launch-nav.php';
include ($template_url);
?>
<div class="launch-picker">
<div class="blue-bg image-bg" style="background-image: url('<?php echo get_template_directory_uri(); ?>/images/keaton.jpg');">
<div class="filter"></div>
<div class="container">
<div class="intro">
<h1>Level up your skills and launch yourself into a job you'll love.</h1>
<p>HackCville hosts two different summer programs, depending on your interests and goals:</p>
</div>
<div class="flex">
<div class="flex-1-of-2 academy">
<h3>I'm a 1st, 2nd, or 3rd year.</h3>
<div class="signup">
<a href="academy" class="button" alt="Apply to Launch">
Get Details on <br>Launch Academy →
</a>
</div>
</div>
<div class="flex-1-of-2 fellowship">
<h3>I'm a 4th year.</h3>
<div class="signup">
<a href="fellowship" class="button" alt="Apply to Launch">
Get Details on <br>Launch Fellowship →
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
get_footer();