-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<%# Metadata %> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta name="description" content="A DESCRIPTION OF YOUR EJS TEMPLATE" /> | ||
|
||
<%# Title %> | ||
<title>Blog-Doc | THE TITLE OF YOUR EJS TEMPLATE</title> | ||
|
||
<%# Pure.css %> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/purecss/build/pure-min.min.css" /> | ||
<%# Pure.css grids. Not necessary if you don't want to use it ! %> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/grids-responsive-min.css" /> | ||
<link rel="shortcut icon" href="/icons/favicon.ico" type="image/x-icon" /> | ||
<link rel="stylesheet" href="/css/styles.min.css" /> | ||
</head> | ||
<body> | ||
<div id="layout"> | ||
<%- include('../components/menu') %> | ||
<div id="main"> | ||
<%# Page header %> | ||
<div class="header"> | ||
<h1>THE TITLE OF YOUR EJS TEMPLATE</h1> | ||
<h2>A DESCRIPTION OF YOUR EJS TEMPLATE</h2> | ||
</div> | ||
<%# Page content %> | ||
<div class="content"> | ||
THE CONTENT OF YOUR EJS TEMPLATE | ||
<br /> | ||
YOU CAN USE PLAIN HTML INSIDE AN EJS FILE | ||
</div> | ||
</div> | ||
</div> | ||
<%- include('../components/footer') %> | ||
</body> | ||
</html> |