-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-kontaktdaten-erfassen.php
57 lines (37 loc) · 2.05 KB
/
page-kontaktdaten-erfassen.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
<html style="margin: 0 !important;">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="google-site-verification" content="xGu-GJN36MCN0-9aTYEr38Ttyvaidkk0ZnRYACsdTTU" />
<meta name="google" value="notranslate">
<!--CLARITY ICONS STYLE-->
<link rel="stylesheet" href="<?php echo get_template_directory_uri() ?>/node_modules/@clr/icons/clr-icons.min.css">
<!--CLARITY ICONS DEPENDENCY: CUSTOM ELEMENTS POLYFILL-->
<script src="<?php echo get_template_directory_uri() ?>/node_modules/@webcomponents/custom-elements/custom-elements.min.js"></script>
<!--CLARITY ICONS API & ALL ICON SETS-->
<script src="<?php echo get_template_directory_uri() ?>/node_modules/@clr/icons/clr-icons.min.js"></script>
<script src="<?php echo get_template_directory_uri() ?>/scripts/main.js"></script>
<link rel="icon" type="image/png" href="<?php echo get_template_directory_uri() ?>/images/favicon.png">
<link href="<?php echo get_template_directory_uri() ?>/styles/main.css" rel="stylesheet">
<script src="<?php echo get_template_directory_uri() ?>/node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="<?php echo get_template_directory_uri() ?>/node_modules/@popperjs/core/dist/umd/popper.min.js"></script>
<script src="<?php echo get_template_directory_uri() ?>/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="<?php echo get_template_directory_uri() ?>/scripts/svg.min.js"></script>
<?php wp_head(); ?>
</head>
<body>
<div style="height: 100vh;">
<?php while (have_posts()) : the_post(); ?>
<div class="container mt-5 pb-5">
<div class="row">
<div class="col wp-post">
<h1><?php the_title() ?></h1>
<p>
<?php the_content(); ?>
</p>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
<?php get_footer(); ?>