Skip to content

Commit 473d675

Browse files
committed
wip
1 parent ceac52a commit 473d675

File tree

9 files changed

+3593
-8751
lines changed

9 files changed

+3593
-8751
lines changed

β€Žapp.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ html(
1010

1111
title [##_page_title_##]
1212

13-
link(rel="stylesheet" :href="'//fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap'")
13+
link(rel="stylesheet" :href="'//cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css'")
1414
link(rel="stylesheet" :href="'//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css'")
1515

1616
style

β€Žassets/app.css

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ button {
1111
@apply pointer-events-auto !important;
1212
}
1313

14-
1514
@layer utilities {
1615
.text-hidden {
1716
@apply absolute w-px h-px -m-px overflow-hidden !important;

β€Ždocs/index.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</information>
1313
<author>
1414
<name>SangWoo Jeong</name>
15-
<homepage>http://www.tidory.com</homepage>
15+
<homepage>https://github.com/pronist</homepage>
1616
<email>pronist@naver.com</email>
1717
</author>
1818
</skin>

β€Žpackage-lock.json

+3,580-8,735
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackage.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
},
2525
"dependencies": {
2626
"alpinejs": "^3.11.1",
27-
"tailwindcss": "^3.2.4",
28-
"tidory": "^8.3.3"
27+
"tailwindcss": "3.2.4",
28+
"tidory": "^8.3.4"
2929
}
3030
}

β€Žtailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
extend: {
99
fontFamily: {
1010
sans: [
11-
'Noto Sans KR',
11+
'SUIT',
1212
...defaultTheme.fontFamily.sans
1313
]
1414
}

β€Žtidory.config.example.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const ESLintPlugin = require('eslint-webpack-plugin')
22

33
/**
44
* Tidory Configuration
5-
* https://tidory.com/docs/configuration
5+
* @see https://tidory.github.io/docs/configuration/
66
*/
77
module.exports = {
88
ts_session: '',
@@ -23,9 +23,7 @@ module.exports = {
2323
* index
2424
* entry
2525
* category
26-
* tag,
27-
* location
28-
* media,
26+
* tag
2927
* guestbook
3028
*/
3129
mode: 'index'

β€Žviews/Header/Navigation.pug

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
-
22
const guidebook = [
3-
{ text: 'μ‹œμž‘ν•˜κΈ°', href: 'https://tidory.com/docs/get-started' },
4-
{ text: '디렉토리', href: 'https://tidory.com/docs/directory' },
5-
{ text: 'ν…œν”Œλ¦Ώ', href: 'https://tidory.com/docs/template' },
6-
{ text: 'ν”„λ ˆμž„μ›Œν¬', href: 'https://tidory.com/docs/framework' },
7-
{ text: 'λΉŒλ“œ 및 배포', href: 'https://tidory.com/docs/deployment' }
3+
{ text: 'μ‹œμž‘ν•˜κΈ°', href: 'https://tidory.github.io/docs/get-started' },
4+
{ text: '디렉토리', href: 'https://tidory.github.io/docs/directory' },
5+
{ text: 'ν…œν”Œλ¦Ώ', href: 'https://tidory.github.io/docs/template' },
6+
{ text: 'ν”„λ ˆμž„μ›Œν¬', href: 'https://tidory.github.io/docs/framework' },
7+
{ text: 'λΉŒλ“œ 및 배포', href: 'https://tidory.github.io/docs/deployment' }
88
];
99
1010
nav(class="mt-9")

β€Žviews/Header/Title.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
h1(class="font-normal text-5xl m-0 text-gray-700 dark:text-zinc-50") TIDORY
1+
h1(class="font-thin text-5xl m-0 text-gray-700 dark:text-zinc-50") TIDORY

0 commit comments

Comments
Β (0)