-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfront-page.php
41 lines (31 loc) · 1.18 KB
/
front-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
37
38
39
40
41
<?php
/**
*
* The template for displaying a static front page.
*
* @package BaseWPTheme
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#home-page-display
*/
get_header(); ?>
<div class="flex-col">
<h1 class="title">Base WP Theme</h1>
<p class="desc">Skeleton WordPress theme to use as a base to build WordPress themes from scratch.</p>
<a class="button" href="https://github.com/sarahcssiqueira/base-wp-theme/archive/HEAD.zip"
aria-label="Download sarahcssiqueira/base-wp-theme on GitHub">Download
</a>
<a class="link" href="https://github.com/sarahcssiqueira/base-wp-theme"
aria-label="Star sarahcssiqueira/base-wp-theme on GitHub">
<i class="fa-regular fa-star"></i> Star Repo
</a>
<a class="link" href="https://github.com/sarahcssiqueira/base-wp-theme#readme"
aria-label="Readme sarahcssiqueira/base-wp-theme on GitHub">
<i class="fa-solid fa-book-open"></i> Readme
</a>
<a class="link" href="https://github.com/sarahcssiqueira/base-wp-theme/fork"
aria-label="Fork sarahcssiqueira/base-wp-theme on GitHub">
<i class="fa-solid fa-code-fork"></i></i> Fork Code
</a>
<p class="desc">Happy coding!</p>
</div>
<?php
get_footer();