create custom php template for book club landing
This commit is contained in:
58
page-book-club.php
Normal file
58
page-book-club.php
Normal file
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* Template Name: Book Club Landing
|
||||
*/
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?>>
|
||||
|
||||
<head>
|
||||
<meta charset="<?php bloginfo('charset'); ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="<?= get_theme_file_uri('/assets/css/static.css'); ?>">
|
||||
<title>Book Club</title>
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
|
||||
<body <?php body_class(); ?>>
|
||||
<?php wp_body_open(); ?>
|
||||
<header class="site-navigation">
|
||||
<a class="logo-wrapper" href="/">
|
||||
<div
|
||||
class="logo-spacer">
|
||||
</div>
|
||||
<img
|
||||
class="header-logo"
|
||||
src="<?= get_theme_file_uri('/assets/images/header-logo.svg'); ?>"
|
||||
alt="Somos Infinitos">
|
||||
</a>
|
||||
|
||||
<nav>
|
||||
<ul class="pages-list">
|
||||
<li>
|
||||
<a href="#">Livros</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Book Club</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Mentoria</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Podcast</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<nav class="action-buttons">
|
||||
<a href="#">
|
||||
<img src="<?= get_theme_file_uri('/assets/images/profile-button.svg'); ?>">
|
||||
</a>
|
||||
<a class="join-us-cta btn" href="">Junta-te a nós</a>
|
||||
</nav>
|
||||
</header>
|
||||
<?php wp_footer(); ?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user