Skip to content

Instantly share code, notes, and snippets.

@Athira2199
Last active November 9, 2020 09:56
Show Gist options
  • Save Athira2199/3b9a79aa92de8811c597d672a7897009 to your computer and use it in GitHub Desktop.
Save Athira2199/3b9a79aa92de8811c597d672a7897009 to your computer and use it in GitHub Desktop.
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Trying out partials in ejs</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<body>
<%- include('navbar.ejs') %>
<main role="main" class="container">
What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer
took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</main>
<%- include('footer.ejs') %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment