-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (31 loc) · 1.44 KB
/
index.php
File metadata and controls
38 lines (31 loc) · 1.44 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
<?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 Woodstock
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<h1>Hello World! 111</h1>
<p class="grid grid-cols-3 testclass relative px-5 sm:px-8">Lorem ipsum dolor sit amet consectetur, adipisicing
elit. Laboriosam
porro ea
incidunt, earum, veniam natus iusto
blanditiis iste labore aperiam voluptatum. Provident maxime, quod minus fugit at labore voluptatem officiis!</p>
<h2>Heading H2</h2>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Laboriosam porro ea incidunt, earum, veniam natus iusto
blanditiis iste labore aperiam voluptatum. Provident maxime, quod minus fugit at labore voluptatem officiis!</p>
<h3>Heading H3</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Laboriosam porro ea incidunt, earum, veniam natus iusto
blanditiis iste labore aperiam voluptatum. Provident maxime, quod minus fugit at labore voluptatem officiis!</p>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer();