58 lines
1.3 KiB
PHP
58 lines
1.3 KiB
PHP
<?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>
|