Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
content
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ok1kvk.cz
content
Commits
fd3d3c41
Commit
fd3d3c41
authored
2 years ago
by
Isabella Skořepová
Browse files
Options
Downloads
Patches
Plain Diff
make the move work
parent
ed2d53ed
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#3517
passed
2 years ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
sitegin/index.js
+5
-2
5 additions, 2 deletions
sitegin/index.js
sitegin/readFiles.js
+1
-0
1 addition, 0 deletions
sitegin/readFiles.js
sitegin/urls.js
+9
-1
9 additions, 1 deletion
sitegin/urls.js
theme-source/templates/article.tsx
+2
-4
2 additions, 4 deletions
theme-source/templates/article.tsx
with
17 additions
and
7 deletions
sitegin/index.js
+
5
−
2
View file @
fd3d3c41
...
@@ -128,10 +128,13 @@ function copyStaticFiles(builddir) {
...
@@ -128,10 +128,13 @@ function copyStaticFiles(builddir) {
},
},
)
)
fsextra
.
copy
(
fsextra
.
copy
(
path
.
join
(
__dirname
,
'
..
'
,
'
static
'
,
'
articles
'
),
path
.
join
(
__dirname
,
'
..
'
,
'
content
'
,
'
articles
'
),
`
${
builddir
}
/clanek`
,
`
${
builddir
}
/clanek`
,
(
file
)
=>
{
return
!
file
.
endsWith
(
'
.md
'
)
},
()
=>
{
()
=>
{
console
.
log
(
'
copy
static
/articles done
'
)
console
.
log
(
'
copy
content
/articles done
'
)
},
},
)
)
}
}
...
...
This diff is collapsed.
Click to expand it.
sitegin/readFiles.js
+
1
−
0
View file @
fd3d3c41
...
@@ -10,6 +10,7 @@ export default (obj) => {
...
@@ -10,6 +10,7 @@ export default (obj) => {
const
onFile
=
(
root
,
fileStats
,
next
,
array
)
=>
{
const
onFile
=
(
root
,
fileStats
,
next
,
array
)
=>
{
// ignore files like .gitkeep
// ignore files like .gitkeep
if
(
fileStats
.
name
.
startsWith
(
'
.
'
))
return
next
()
if
(
fileStats
.
name
.
startsWith
(
'
.
'
))
return
next
()
if
(
!
fileStats
.
name
.
endsWith
(
'
.md
'
))
return
next
()
const
filename
=
path
.
join
(
root
,
fileStats
.
name
)
const
filename
=
path
.
join
(
root
,
fileStats
.
name
)
const
file
=
path
.
relative
(
path
.
join
(
__dirname
,
'
..
'
,
'
content
'
),
filename
)
const
file
=
path
.
relative
(
path
.
join
(
__dirname
,
'
..
'
,
'
content
'
),
filename
)
fs
.
readFile
(
filename
,
'
utf8
'
,
(
err
,
data
)
=>
{
fs
.
readFile
(
filename
,
'
utf8
'
,
(
err
,
data
)
=>
{
...
...
This diff is collapsed.
Click to expand it.
sitegin/urls.js
+
9
−
1
View file @
fd3d3c41
/*
/*
* This jobs translates files to resulting URL
* This jobs translates files to resulting URL
*/
*/
import
path
from
'
path
'
export
const
rewriteURL
=
(
file
)
=>
export
const
rewriteURL
=
(
file
)
=>
file
.
replace
(
/
\
.
md
$/
,
'
/
'
).
replace
(
/^articles/
,
'
clanek
'
)
file
.
replace
(
/
\
/[^/]
+
$/
,
'
/
'
).
replace
(
/^articles/
,
'
clanek
'
)
export
default
(
obj
)
=>
{
export
default
(
obj
)
=>
{
console
.
log
(
'
Build step: URLs
'
)
console
.
log
(
'
Build step: URLs
'
)
return
new
Promise
((
resolve
)
=>
{
return
new
Promise
((
resolve
)
=>
{
for
(
const
page
of
obj
.
pages
)
{
for
(
const
page
of
obj
.
pages
)
{
const
basename
=
path
.
basename
(
page
.
file
,
'
.md
'
)
if
(
!
page
.
file
.
endsWith
(
basename
+
'
/
'
+
basename
+
'
.md
'
))
{
throw
new
Error
(
'
Article md file must be in eponymous folder (ie. something/article-name/article-name.md)
'
,
)
}
page
.
originalFile
=
page
.
file
page
.
file
=
rewriteURL
(
page
.
file
)
page
.
file
=
rewriteURL
(
page
.
file
)
page
.
canonicalURL
=
`https://ok1kvk.cz/
${
page
.
file
}
`
page
.
canonicalURL
=
`https://ok1kvk.cz/
${
page
.
file
}
`
}
}
...
...
This diff is collapsed.
Click to expand it.
theme-source/templates/article.tsx
+
2
−
4
View file @
fd3d3c41
...
@@ -84,7 +84,7 @@ export default {
...
@@ -84,7 +84,7 @@ export default {
},
},
}
}
function
Article
({
metadata
,
content
,
config
,
f
ile
})
{
function
Article
({
metadata
,
content
,
config
,
originalF
ile
})
{
return
(
return
(
<
BaseBody
config
=
{
config
}
>
<
BaseBody
config
=
{
config
}
>
<
div
className
=
"section container"
id
=
"content"
>
<
div
className
=
"section container"
id
=
"content"
>
...
@@ -98,9 +98,7 @@ function Article({ metadata, content, config, file }) {
...
@@ -98,9 +98,7 @@ function Article({ metadata, content, config, file }) {
className
=
"author"
className
=
"author"
style
=
{
{
color
:
'
#a2a2a2
'
,
display
:
'
block
'
}
}
style
=
{
{
color
:
'
#a2a2a2
'
,
display
:
'
block
'
}
}
target
=
"_blank"
target
=
"_blank"
href
=
{
`https://git.ok1kvk.cz/ok1kvk.cz/content/tree/main/content/articles/
${
file
href
=
{
`https://git.ok1kvk.cz/ok1kvk.cz/content/tree/main/content/articles/
${
originalFile
}
`
}
.
replace
(
'
clanek/
'
,
''
)
.
replace
(
/
\/
$/
,
''
)}
.md`
}
>
>
{
metadata
.
published
?
(
{
metadata
.
published
?
(
<>
<>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment