-
Notifications
You must be signed in to change notification settings - Fork 1
/
single-campaign-jobs.php
53 lines (46 loc) · 1.6 KB
/
single-campaign-jobs.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: Custom-Jobs
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
* Template Post Type: campaign
* @package Sunrise_National
*/
get_header();
?>
<div class="campaign-single jobs">
<?php
while ( have_posts() ) :
the_post();
endwhile; // End of the loop.
wp_reset_postdata();
?>
<header class=" jobs-header alignfull">
<img class="jobs-header__sunrise-logo" src="<?php echo get_template_directory_uri(); ?>/assets/img/sunrise-top-logo.png">
<img class="jobs-header__logo" src="<?php echo get_template_directory_uri(); ?>/assets/img/sunrise-job-logo.png">
<div class="jobs-header__text">
Our movement demands a Green New Deal that guarantees a good job building a sustainable, just and people powered economy to anyone who wants one.
</div>
<img class="jobs-header__background" src="<?php echo get_template_directory_uri(); ?>/assets/img/gradient-header.png">
<nav class="jobs-header__nav alignwide">
<a href="#live">Live Stream</a>
<a href="#about">About</a>
<a class="cta-callout" id="involved-trig" href="#get-involved">Get Involved</a>
<a href="https://www.sunrisemovement.org/theory-of-change/what-is-a-federal-jobs-guarantee/">Job FAQ</a>
<a href="#contact">Contact Us</a>
</nav>
</header>
<div id="content" class="site-content">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content/content', 'page' );
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
</div>
</div>
<?php
get_footer();