26 lines
No EOL
592 B
Text
26 lines
No EOL
592 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<% if (title) { %>
|
|
<title><%= title %></title>
|
|
<% } else { %>
|
|
<title>My Awesome Page</title>
|
|
<% } %>
|
|
<link rel="stylesheet" href="/assets/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="left">
|
|
<% if (title) { %>
|
|
<h1><%= title %></h1>
|
|
<% } %>
|
|
<% if (subtitle) { %>
|
|
<h2><%= subtitle %></h2>
|
|
<% } %>
|
|
</div>
|
|
<div id="right">
|
|
<p>Hello World</p>
|
|
</div>
|
|
</body>
|
|
</html> |