Skip to content

Instantly share code, notes, and snippets.

@ramontristani
Last active March 4, 2019 21:56
Show Gist options
  • Save ramontristani/8412810 to your computer and use it in GitHub Desktop.
Save ramontristani/8412810 to your computer and use it in GitHub Desktop.
EJS: Basic HTML/EJS boilerplate
<!doctype html>
<html>
<head>
<meta name="viewport" content="initial-scale=1, maximum-scale=1" />
<meta charset="utf-8" />
<title><%= title %></title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
</head>
<body>
<div class="row">
<div class="jumbotron">
<h1>
<span class="glyphicon glyphicon-fire"></span>
<span><%= title %></span>
<small><%= subtitle %></small>
</h1>
<p>
<%= description %>
</p>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment