-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ejs
42 lines (33 loc) · 1.29 KB
/
index.ejs
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<%# Meta %>
<%- include('/base/meta', { meta: theme.meta }); %>
<%# Styles %>
<%- include('/base/styles', { theme, utilities }); %>
</head>
<body class="is-<%= theme.type %>">
<div class="pattern-bg pattern-bg--header">
<%# Header %>
<%- include('/components/header', { navigation: theme.navigation, user }); %>
<%# About %>
<%- include('/layout/about', { theme, user }); %>
<%# Stats %>
<%- include('/layout/stats', { user }); %>
</div>
<%# Projects %>
<%- include('/layout/projects', { theme, projects: repositories }); %>
<%# Gists and Contributions %>
<% if ((gists && gists.length) || (contributions && contributions.length)) { %>
<%- include('/layout/gists-contributions', { user, gists, contributions, utilities }); %>
<% } %>
<%# Footer %>
<%- include('/layout/footer', { user, date }); %>
<%# Deferred CSS %>
<noscript id="deferred-styles">
<link rel="stylesheet" href="assets/deferred.min.css"/>
</noscript>
<%# Scripts %>
<script type="text/javascript" src="assets/project.min.js"></script>
</body>
</html>