19 lines
553 B
Plaintext
19 lines
553 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><%= @page_title || "My Website" %></title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
|
|
</head>
|
|
<body>
|
|
<section class="section">
|
|
<div class="container">
|
|
<h1 class="title is-1"><%= @page_title || 'Page Title Placeholder' %></h1>
|
|
<% # maybe put a flash section here some day %>
|
|
<%== yield %>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|