Skip to content

Commit 79788ab

Browse files
enable prism, icons_text_color and remove the main.js file.
1 parent fcaa6b9 commit 79788ab

File tree

1 file changed

+59
-23
lines changed

1 file changed

+59
-23
lines changed

default.hbs

+59-23
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,100 @@
11
<!DOCTYPE html>
22

3-
<html lang="{{@site.locale}}" class="dark scroll-smooth overflow-x-hidden">
3+
<html lang="{{@site.locale}}" class="scroll-smooth overflow-x-hidden">
44

55
<head>
66

77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
88
<meta charset="utf-8" />
99
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
1010
<link rel="stylesheet" href="{{asset 'build/css/build.css'}}" /> {{!-- link production ready css file --}}
11-
{{!-- <script src="https://unpkg.com/alpinejs" defer></script> Alpine js --}}
12-
13-
{{ghost_head}}
11+
12+
{{ghost_head}}
13+
14+
{{#is "post, page"}}
15+
<script src="{{asset 'build/js/prism.js'}}"></script>
16+
{{/is}}
17+
18+
{{#is "post, page"}}
19+
{{#match @custom.prismjs_code_highlight "Tomorrow Theme" }}
20+
<link rel="stylesheet" href="{{asset 'build/css/tomorrow.css'}}">
21+
{{else match @custom.prismjs_code_highlight "Twilight Theme" }}
22+
<link rel="stylesheet" href="{{asset 'build/css/twilight.css'}}">
23+
{{else match @custom.prismjs_code_highlight "Okaidia Theme" }}
24+
<link rel="stylesheet" href="{{asset 'build/css/okaidia.css'}}">
25+
{{else match @custom.prismjs_code_highlight "Dark Theme" }}
26+
<link rel="stylesheet" href="{{asset 'build/css/dark.css'}}">
27+
{{else}}
28+
<link rel="stylesheet" href="{{asset 'build/css/default-prism.css'}}">
29+
{{/match}}
30+
{{/is}}
31+
32+
<style>
33+
:root {
34+
--kg-breakout-adjustment: 0px;
35+
{{#if @custom.text_primary_color}}
36+
--primary-theme-text-color: {{@custom.text_primary_color}};
37+
{{/if}}
38+
{{#if @custom.text_color}}
39+
--main-text-color: {{@custom.text_color}};
40+
{{/if}}
41+
{{#if @custom.text_secondary_color}}
42+
--secondary-theme-text-color: {{@custom.text_secondary_color}};
43+
{{/if}}
44+
{{#if @custom.text_accent_color}}
45+
--accent-theme-text-color: {{@custom.text_accent_color}};
46+
{{/if}}
47+
}
48+
</style>
1449

1550
</head>
1651

17-
<body {{#if @custom.background_color }} style="background-color: {{@custom.background_color}};" {{/if}} class="{{body_class}} dark:bg-black dark:text-white antialiased scroll-smooth ">
52+
<body {{#if @custom.background_color }} style="background-color: {{@custom.background_color}};" {{/if}} class="{{body_class}} text-foreground antialiased scroll-smooth ">
1853

1954
<header class="gap-10 w-screen grid grid-cols-1 md:grid-cols-3 px-6 py-6 lg:items-center lg:justify-between ">
2055

21-
<a class="justify-self-center items-center" href="/">
56+
<a class="flex flex-row justify-self-center items-center" href="{{@site.url}}">
2257

2358
{{#if @site.logo}}
24-
<img src="{{@site.logo}}" class="w-[150px]" alt="{{@site.title}}" />
59+
<img src="{{@site.logo}}" class="w-[160px]" alt="{{@site.title}}" />
2560
{{else}}
26-
<h1 class="text-center text-[22px]"> {{@site.title}} </h1>
61+
<h1 class="text-center text-lg"> {{@site.title}} </h1>
2762
{{/if}}
2863

2964
</a>
3065

66+
3167
{{"navigation"}}
3268

3369

70+
3471
<div class="flex-grow flex justify-center flex-row">
3572

3673
<li class="mx-2 flex items-center">
37-
<button class="text-white" data-ghost-search>{{> Icons/search}}</button>
74+
<button style="color:{{@custom.icons_text_color}}" data-ghost-search>{{> Icons/search}}</button>
3875
</li>
3976

4077
{{#if @site.facebook}}
41-
<li class="mx-2 flex items-center ">
78+
<li class="mx-2 flex items-center">
4279

43-
<a class="text-white" rel="noopener" target="_blank"
44-
href="{{facebook_url @site.facebook}}">
45-
{{> Icons/facebook}}
46-
</a>
80+
<a style="color:{{@custom.icons_text_color}}" target="_blank" href="{{facebook_url @site.facebook}}">
81+
{{> Icons/facebook}}
82+
</a>
4783

48-
</li>
84+
</li>
4985
{{/if}}
5086

5187
{{#if @site.twitter}}
52-
<li class="mx-2 flex items-center">
53-
<a class="text-white dark:text-gray-700" target="_blank" href="{{twitter_url @site.twitter}}">
54-
{{> Icons/twitter}}
55-
</a>
56-
</li>
88+
<li class="mx-2 flex items-center">
89+
90+
<a style="color:{{@custom.icons_text_color}}" target="_blank" href="{{twitter_url @site.twitter}}">
91+
{{> Icons/twitter}}
92+
</a>
93+
94+
</li>
5795
{{/if}}
5896

5997
{{#unless @member}}
60-
6198
<a style="background-color:{{@site.accent_color}}"
6299
class="shadow-lg text-white w-20 mx-5 text-center p-1 rounded-sm" href="#/portal/signup"
63100
data-portal="signup">Pro</a>
@@ -66,6 +103,7 @@
66103
class="shadow-lg text-white w-20 mx-5 text-center p-1 rounded-sm" href="#/portal/account"
67104
data-portal="account">Account</a>
68105
{{/unless}}
106+
69107
</div>
70108

71109
</header>
@@ -90,8 +128,6 @@
90128
{{!-- ghost header --}}
91129
{{ghost_foot}}
92130

93-
<script src="{{asset 'build/js/main.js'}}"></script> {{!-- build javascript --}}
94-
95131
</body>
96132

97133
</html>

0 commit comments

Comments
 (0)