Рефакторинг
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2024-09-06 23:10:25 +03:00
parent 0dc3a95f50
commit a57fe0d0bd
No known key found for this signature in database
GPG Key ID: A3F0AC3F0FA52F3C
2 changed files with 2 additions and 25 deletions

View File

@ -6,7 +6,6 @@ export const sharedPageComponents: SharedLayout = {
head: Component.Head(),
header: [],
afterBody: [
Component.TagList(),
Component.Backlinks(),
Component.Remark({
options: {
@ -32,9 +31,10 @@ const githubSourceConfig = {
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
beforeBody: [
Component.Breadcrumbs(),
Component.Breadcrumbs({showCurrentPage: false}),
Component.ArticleTitle(),
Component.ContentMeta(),
Component.TagList()
],
left: [
Component.PageTitle(),

View File

@ -1,23 +0,0 @@
---
kind: pipeline
type: docker
name: docker-build-and-push
trigger:
branch:
- main
steps:
- name: build ru garden
# https://hub.docker.com/r/library/docker
image: hub.docker.struchkov.dev/docker:27.1.2-dind-alpine3.20
commands:
- cd garden/ru
- docker run -v ./.quartz/quartz.config.ts:/usr/src/app/quartz.config.ts -v .:/usr/src/app/content -v ./garden_ru:/usr/src/app/public --rm docker.struchkov.dev/quartz:local build
# drone sign --save DockerFiles/quartz
---
kind: signature
hmac: cf0faf7e69ed98a6c0191b3578f874c41d6a297645bcf5c8cc1994c540f207ba
...