-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage_video.php
More file actions
105 lines (77 loc) · 2.78 KB
/
Copy pathpage_video.php
File metadata and controls
105 lines (77 loc) · 2.78 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
/**
* * Template Name: Video Page
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package u-flow
*/
get_header();
?>
<main id="primary" class="site-main">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php
$upload_dir = wp_upload_dir();
$video_path = $upload_dir['baseurl'].'/2021/09/Veranstaltungsschutz-Viehscheid-Thalkirchdorf-2018-__-AlpGuard-Service-GmbH.mp4';
echo '<div class="fullsize-video-bg">
<div class="video-viewport">
<video width="1920" height="1280" autoplay muted loop>
<source src="'.$video_path.'" type="video/mp4" />
</video>
</div>
</div>';
$color = get_field('farbe');
if($color == 'blue'){$buttonCol = 'bg-blue';}
elseif($color == 'red'){$buttonCol = 'bg-red';}
else{$buttonCol = 'bg-green';}
echo '<div class="entry-box">';
the_title( '<h1 class="entry-title fly-ani ttuc">', '</h1>' );
echo '<p class="entry-title-sub js-scroll fade-in-bottom scrolled fff ttuc">Service und Sicherheitsdienst Allgäu</p>
<p class="fff ttuc js-scroll fade-in-bottom scrolled">Nehmen Sie jetzt Kontakt auf!</p>
<a href="/" class="button2 js-scroll fade-in-bottom scrolled p-rel ' . $buttonCol . '" style="display: block; width: fit-content;">Kostenfreie Beratung <img src="https://uflow7.de/alpg/wp-content/uploads/2021/09/button-arrow.png" class="button-arrow"/></a>
</div>';
echo '<div class="grueten-container">';
if($color == 'blue'){echo '<img src="https://uflow7.de/alpg/wp-content/uploads/2021/09/BG_Gruenten-1.png" class="lazyload gruenten">';}
elseif($color == 'red'){echo '<img src="https://uflow7.de/alpg/wp-content/uploads/2021/09/red.png" class="lazyload gruenten">';}
else{echo '<img src="https://uflow7.de/alpg/wp-content/uploads/2021/09/green.png" class="lazyload gruenten">';}
echo '</div>';
?>
</header><!-- .entry-header -->
<?php
get_template_part( 'template-parts/content-parts/001_main', 'acfcontent' );
the_content();
wp_link_pages(
array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'u-flow' ),
'after' => '</div>',
)
);
?>
<?php if ( get_edit_post_link() ) : ?>
<footer class="entry-footer">
<?php
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Edit <span class="screen-reader-text">%s</span>', 'u-flow' ),
array(
'span' => array(
'class' => array(),
),
)
),
wp_kses_post( get_the_title() )
),
'<span class="edit-link">',
'</span>'
);
?>
</footer><!-- .entry-footer -->
<?php endif; ?>
</article><!-- #post-<?php the_ID(); ?> -->
</main><!-- #main -->
<?php
get_sidebar();
get_footer();