-
Notifications
You must be signed in to change notification settings - Fork 3
/
page-docform.php
49 lines (43 loc) · 1.51 KB
/
page-docform.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
<?php
/**
* The template for displaying the form for docs page.
*
* @package WordPress Sverige
*/
/*
Template Name: Formulär, Dokumentation
*/
get_header();
while ( have_posts() ) : the_post(); ?>
<!-- Start Page Header -->
<section id="page-header" class="section">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="page-title"><?php the_title(); ?></h1>
</div>
</div>
</div>
</section>
<!-- Start Page Header -->
<!-- Start Page Content -->
<section id="page-full" class="section">
<div class="container">
<div class="row">
<div class="col-md-9 page-content">
<?php
if ( is_user_logged_in() ) {
the_content();
} else { ?>
<h3>Inloggning krävs</h3>
<p><strong>Vad kul att du vill delta med artiklar i dokumentationen!</strong></p>
<p>WordPress Sveriges dokumentation är öppen för alla att delta i. Man måste dock vara inloggad för att kunna skapa nya artiklar eller för att redigera befintliga artiklar. Detta för att undvika oseriös användning och för att motverka skräpposter. <a href="<?php echo esc_url( home_url( '/logga-in/' ) ); ?>">Logga in</a> eller <a href="<?php echo esc_url( home_url( '/bli-medlem/' ) ); ?>">bli medlem</a> för att skapa/redigera artiklar i dokumetationen.</p>
<?php } ?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</section>
<!-- End Page Content -->
<?php endwhile; // end of the loop. ?>
<?php get_footer(); ?>