18 |
--------------------------------------------------------------------------------
/layout/_partial/dialog.ejs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
10 |
11 |
12 |
17 |
18 |
19 | 您已调整页面字体大小
20 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
32 | 夜间模式已经开启,再次单击按钮即可关闭
33 |
34 |
35 |
36 |
39 |
40 |
41 | <%= config.title %>
42 |
43 |
44 | Copyright © <%= date(new Date(), 'YYYY') %> <%= config.author || config.title %> All Rights Reserved.
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/layout/_partial/donate.ejs:
--------------------------------------------------------------------------------
1 |
2 |
3 | <%- js('js/vdonate') %>
4 |
--------------------------------------------------------------------------------
/layout/_partial/facebook-sdk.ejs:
--------------------------------------------------------------------------------
1 | <% if (theme.facebook_sdk.enable){ %>
2 |
3 |
20 |
21 | <% }%>
22 |
--------------------------------------------------------------------------------
/layout/_partial/footer.ejs:
--------------------------------------------------------------------------------
1 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/layout/_partial/gauges-analytics.ejs:
--------------------------------------------------------------------------------
1 | <% if (theme.gauges_analytics){ %>
2 |
3 |
17 |
18 | <% } %>
19 |
--------------------------------------------------------------------------------
/layout/_partial/google-analytics.ejs:
--------------------------------------------------------------------------------
1 | <% if (theme.google_analytics){ %>
2 |
3 |
13 |
14 | <% } %>
15 |
--------------------------------------------------------------------------------
/layout/_partial/head.ejs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <%
6 | var title = page.title;
7 |
8 | if (is_archive()){
9 | title = __('archive_a');
10 |
11 | if (is_month()){
12 | title += ': ' + page.year + '/' + page.month;
13 | } else if (is_year()){
14 | title += ': ' + page.year;
15 | }
16 | } else if (is_category()){
17 | title = __('category') + ': ' + page.category;
18 | } else if (is_tag()){
19 | title = __('tag') + ': ' + page.tag;
20 | }
21 | %>
22 |
<% if (title){ %><%= __(title.toLowerCase()) %> | <% } %><%= config.title %>
23 |
24 | <% if (page.keywords){ %>
25 |
26 | <% } else if (theme.keywords){ %>
27 |
28 | <% } else if (page.tags && page.tags.length){ %>
29 |
30 | <% }%>
31 | <% if (theme.google_site_verification){ %>
32 |
33 | <% } %>
34 | <% if (theme.baidu_site_verification){ %>
35 |
36 | <% } %>
37 | <% if (theme.qihu_site_verification){ %>
38 |
39 | <% } %>
40 | <%- open_graph({twitter_id: theme.twitter, google_plus: theme.google_plus, fb_admins: theme.fb_admins, fb_app_id: theme.fb_app_id}) %>
41 | <% if (theme.rss){ %>
42 |
43 | <% } %>
44 |
45 | <%
46 | var avatarurl = "css/images/avatar.jpg"
47 | if (theme.avatar.url){
48 | avatarurl = theme.avatar.url;
49 | }
50 | %>
51 |
52 |
53 |
54 | <% if (config.highlight.enable){ %>
55 |
56 | <% } %>
57 |
58 |
59 |
60 |
67 | <%- css('css/style') %>
68 |
69 | <%- js('js/jquery-3.1.1.min.js') %>
70 | <%- js('js/bootstrap') %>
71 |
72 |
73 |
74 |
75 | <% if (is_home()){ %>
76 |
77 | <% } else {%>
78 | <%- css('css/dialog.css') %>
79 | <% } %>
80 |
81 | <% if (is_home() && theme.home_background_image.enable && theme.home_background_image.mode == "trianglify") { %>
82 |
83 | <% } %>
84 |
85 | <% if (!is_home() || !theme.home_background_image.enable){ %>
86 |
87 | <% } %>
88 |
89 | <% if (!is_post() && !is_home()){ %>
90 |
91 | <% } %>
92 |
93 | <% if (theme.donate.enable){ %>
94 |
95 | <% } %>
96 |
97 |
98 |
--------------------------------------------------------------------------------
/layout/_partial/header-post.ejs:
--------------------------------------------------------------------------------
1 |
39 |
40 | <% if (is_current("about", false) && theme.about_big_image){ %>
41 |
42 | <% if (typeof(theme.about_big_image) == "string") { %>
43 |
44 |
45 |
}) %>)
46 |
47 |
48 | <% } else { %>
49 |
50 |
51 |
52 |
53 |
54 | <% for(var i=0; i< theme.about_big_image.length; i++){%>
55 | <% if(i == 0){ %>
56 |
57 | <% } else {%>
58 |
59 | <% } %>
60 |
 %>)
61 |
62 |
63 |
64 |
81 | <% } %>
82 |
83 |
84 |
85 |
86 |
87 | Geri
88 |
89 |
90 |
91 | İleri
92 |
93 |
94 |
95 |
96 | <% } %>
97 |
98 | <% } %>
99 |
--------------------------------------------------------------------------------
/layout/_partial/header.ejs:
--------------------------------------------------------------------------------
1 |