Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created September 20, 2022 03:52
Show Gist options
  • Select an option

  • Save Octagon-simon/ba047bacc7dccf8484f0a606ebd80173 to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/ba047bacc7dccf8484f0a606ebd80173 to your computer and use it in GitHub Desktop.
<!Doctype html>
<html>
<head>
<%- include('./layouts/head') %>
</head>
<body>
<header>
<%- include('./layouts/navbar') %>
</header>
<main class="mt-5">
<div class="m-auto p-3" style="max-width:700px;box-shadow:0px 0px 8px #ddd">
<h1 class="text-primary mt-5 text-center">Welcome To Fruits Page</h1>
<h5 class="text-center">I have <span class="text-danger">
<%= fruitsAry.length %>
</span> favourite fruits and they are listed below.</h5>
<ol>
<% for(let i=0; i < fruitsAry.length; i++){ %>
<li>
<%= fruitsAry[i] %>
</li>
<% } %>
</ol>
</div>
</main>
</body>
<footer>
<%- include('./layouts/footer') %>
</footer>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment