-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
76 lines (67 loc) · 2.3 KB
/
Copy pathindex.php
File metadata and controls
76 lines (67 loc) · 2.3 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
<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package coolmat
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<!-- our hero element… todo: make it dynamic (we’ll hard code it to begin with) -->
<div class="hero">
<div class="hero-inner container">
<h1 class="hero-text">
<!-- here we use the template tag to grab the site name -->
<span class="hero-sitename"><?php bloginfo('name'); ?></span> fried seaweed roll
</h1>
<p class="hero-description">
<span class="magenta"><?php bloginfo('name'); ?></span> is a restaurant that creates future flavor nostalgia of street food.
</p>
</div>
</div>
<!-- our intro element… todo: make this dynamic -->
<div class="intro" id="intro">
<div class="intro-inner">
<h2 class="intro-title">Introducing <?php bloginfo('name'); ?></h2>
<p class="intro-description">
street food that was born in tough times.<br>
street food that everybody loves.<br>
<span class="yellow"><?php bloginfo('name'); ?></span> is on a mission to provide future<br>
flavor nostalgia of street food for men,<br>
women, children, grandpas and grandmas.<br>
we only use the best ingredients.
</p>
</div>
</div>
<div class="food-title" id="food">Menu</div>
<div class="food-grid">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) :
the_post();
/*
* Include the Post-Type-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_type() );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();