-
Notifications
You must be signed in to change notification settings - Fork 217
/
taxonomy-classe.php
executable file
·48 lines (41 loc) · 1.43 KB
/
taxonomy-classe.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
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Design_Scuole_Italia
*/
get_header();
?>
<main id="main-container" class="main-container redbrown">
<?php get_template_part("template-parts/common/breadcrumb"); ?>
<section class="section bg-white">
<div class="container">
<div class="row variable-gutters">
<div class="col-md-12 article-title-author-container">
<div class="title-content">
<?php the_archive_title( '<h1>', '</h1>' ); ?>
</div><!-- /title-content -->
</div><!-- /col-md-6 -->
</div><!-- /row -->
</div><!-- /container -->
</section>
<section class="section bg-white">
<div class="container ">
<article class="article-wrapper">
<div class="row variable-gutters">
<div class="col-lg-12">
<?php
// todo
the_archive_description();
?>
<p>Work in progress</p>
</div>
</div>
</article>
</div>
</section>
</main>
<?php
get_footer();