Last active
March 4, 2019 21:56
-
-
Save ramontristani/8412810 to your computer and use it in GitHub Desktop.
EJS: Basic HTML/EJS boilerplate
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
<!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