-
Notifications
You must be signed in to change notification settings - Fork 849
Expand file tree
/
Copy pathprofile.ejs
More file actions
28 lines (26 loc) · 788 Bytes
/
profile.ejs
File metadata and controls
28 lines (26 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%- include('./partials/head')-%>
<body class="container hero-image">
<%- include('./partials/header')-%>
<main>
<h3 class="display-4">नमस्ते (Namaste) <%= username %></h3>
</main>
<div class="text-center">
<img
src="wallpaper.jpg"
width="300px"
height="100px"
class="img-fluid"
alt="simple image"
/>
<blockquote class="blockquote text-center">
<p class="mb-0">Truth can only be found in one place: the code.</p>
<footer class="blockquote-footer">
Robert C. Martin,
<cite title="Source Title"
>Clean Code: A Handbook of Agile Software Craftsmanship</cite
>
</footer>
</blockquote>
</div>
<%- include('./partials/footer')-%>
</body>