forked from mamurjordev/learnegy-lms-wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.php
36 lines (33 loc) · 1.06 KB
/
page.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
<?php
get_header();
?>
<main id="content">
<!-- single-event-details-start -->
<section>
<!-- single-coureses-start-second -->
<div class="main-container">
<div class="container">
<div class="row">
<div class="col">
<div class="mt-2 event-document">
<?php
if(has_post_thumbnail()) {
the_post_thumbnail( 'large', array('class'=>'w-100 mb-4 img-fluid h-auto') );
}
?>
<h2 class="fw-bold">
<?php the_title(); ?>
</h2>
<?php
the_content();
?>
</div>
</div>
</div>
</div>
</div>
<!-- single-coureses-start-second-close -->
</section>
</main>
<?php
get_footer();