Added basic theme
This commit is contained in:
parent
a085ca6867
commit
8b9afa66ce
42 changed files with 5633 additions and 0 deletions
2
themes/custom/layout/_partial/arrow.ejs
Normal file
2
themes/custom/layout/_partial/arrow.ejs
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
<pointer href="javascript:void(0);" class="arrow fa fa-arrow-up"></pointer>
|
||||
<pointer href="javascript:void(0);" class="arrow fa fa-arrow-down"></pointer>
|
||||
12
themes/custom/layout/_partial/aside.ejs
Normal file
12
themes/custom/layout/_partial/aside.ejs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<aside class="aside">
|
||||
<div class="aside-content">
|
||||
<div class="aside-avatar"><img src="<%= theme.Aside.Avatar %>" alt="<%= theme.Aside.Author %>"></div>
|
||||
<div class="aside-author"><%= theme.Aside.Author %></div>
|
||||
<div class="aside-description"><%= theme.Aside.Description %></div>
|
||||
<ul class="aside-contact clearFix">
|
||||
<li><span class="fa fa-github"></span><a href="<%= theme.Aside.Github %>">Github</a></li>
|
||||
<li><span class="fa fa-envelope"></span><a href="javascript:void(0);"><%= theme.Aside.Email %></a></li>
|
||||
<li><span class="fa fa-envelope"></span><a href="javascript:void(0);"><%= theme.Aside.Email %></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</aside>
|
||||
11
themes/custom/layout/_partial/head.ejs
Normal file
11
themes/custom/layout/_partial/head.ejs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title><%=config.title %></title>
|
||||
<%- favicon_tag(theme.Icon.Favicon) %>
|
||||
<%- css("https://cdn.jsdelivr.net/gh/meethigher/cdn@9.0/css/meethigher-font.css") %>
|
||||
<%- css("https://cdn.jsdelivr.net/gh/meethigher/cdn@9.0/css/animate.css") %>
|
||||
<%- css('css/index.css') %>
|
||||
</head>
|
||||
10
themes/custom/layout/_partial/header.ejs
Normal file
10
themes/custom/layout/_partial/header.ejs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<header class="header">
|
||||
<div class="header-menu"><span class="fa fa-bars"></span></div>
|
||||
<div class="header-search"><span class="fa fa-search"></span></div>
|
||||
<div class="header-title"><a href="/"><%=config.title%> | <span class="header-subtitle"><%=config.subtitle%></span></a></div>
|
||||
<ul class="header-navbar clearFix">
|
||||
<% for(name in theme.Menu) { %>
|
||||
<li><a href="<%- url_for(theme.Menu[name].url) %>"><%=theme.Menu[name].text%></a></li>
|
||||
<% } %>
|
||||
</ul>
|
||||
</header>
|
||||
10
themes/custom/layout/_partial/paginator.ejs
Normal file
10
themes/custom/layout/_partial/paginator.ejs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<div class="post-nav">
|
||||
<% if(page.total > 1) { %>
|
||||
<div class="page-nav">
|
||||
<%- paginator({
|
||||
prev_text: "«",
|
||||
next_text: "»"
|
||||
}) %>
|
||||
</div>
|
||||
<% } %>
|
||||
</div>
|
||||
1
themes/custom/layout/_partial/particles.ejs
Normal file
1
themes/custom/layout/_partial/particles.ejs
Normal file
|
|
@ -0,0 +1 @@
|
|||
<div id="particles-js"></div>
|
||||
1
themes/custom/layout/_partial/search.ejs
Normal file
1
themes/custom/layout/_partial/search.ejs
Normal file
|
|
@ -0,0 +1 @@
|
|||
<div class="search"><span class="fa fa-search"></span></div>
|
||||
1
themes/custom/layout/_partial/toolbar.ejs
Normal file
1
themes/custom/layout/_partial/toolbar.ejs
Normal file
|
|
@ -0,0 +1 @@
|
|||
<div class="toolbar"><span class="fa fa-th"></span></div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue