(Grav GitSync) Automatic Commit from smokephil
This commit is contained in:
parent
d73d0ba519
commit
96a01e3ab4
260 changed files with 25905 additions and 16011 deletions
2
themes/quark/.gitignore
vendored
Normal file
2
themes/quark/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
images/logo/*
|
||||
|
|
@ -1,3 +1,38 @@
|
|||
# v2.1.2
|
||||
## 8/25/2025
|
||||
|
||||
1. [](#new)
|
||||
* Added `comments.html.twig` for native Comments Pro support
|
||||
|
||||
# v2.1.1
|
||||
## 03/14/2025
|
||||
|
||||
1. [](#new)
|
||||
* Added modular template
|
||||
* Added multilingual support for the theme options in the admin panel. Initial translations include English and Spanish.
|
||||
* Added a new toggle option in the admin panel for modular pages to enable or disable the `onepage_menu` functionality directly from the page settings.
|
||||
1. [](#bugfix)
|
||||
* Removed double `login-status.html.twig` reference, and added `ignore missing` on include in `base.html.twig`
|
||||
|
||||
# v2.1.0
|
||||
## 03/08/2025
|
||||
|
||||
1. [](#new)
|
||||
* Added Estonian translation [PR#205](https://github.com/getgrav/grav-theme-quark/pull/205)
|
||||
* Added Japanese translation [PR#126](https://github.com/getgrav/grav-theme-quark/pull/126)
|
||||
* Added Polish translation [PR#173](https://github.com/getgrav/grav-theme-quark/pull/173)
|
||||
|
||||
# v2.0.5
|
||||
## 03/05/2025
|
||||
|
||||
1. [](#improved)
|
||||
* Added `login-status.html.twig` if available
|
||||
* Updated `partials/taxonomylist.html.twig` to support latest updates in that plugin
|
||||
* Added `children_only: true` to sidebar template
|
||||
* Fixed `label-primary` class in relatedpages template
|
||||
* Updated README.md [#PR208](https://github.com/getgrav/grav-theme-quark/pull/208)
|
||||
* Applied taxonomy value date format setting in Archives template [#PR165](https://github.com/getgrav/grav-theme-quark/pull/165)
|
||||
|
||||
# v2.0.4
|
||||
## 09/29/2021
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
* Features Modular view template `features.md`
|
||||
* Hero Modular view template `hero.md`
|
||||
* Text Modular view template `text.md`
|
||||
* Note: Gallery Modular view template `gallery.md` only works in concert with premium plugin [Lightbox Gallery](https://getgrav.org/premium/lightbox-gallery/docs)
|
||||
|
||||
# Installation
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
name: Quark
|
||||
slug: quark
|
||||
type: theme
|
||||
version: 2.0.4
|
||||
version: 2.1.2
|
||||
description: New Grav Default Theme
|
||||
icon: microchip
|
||||
author:
|
||||
|
|
@ -23,8 +23,8 @@ form:
|
|||
fields:
|
||||
production-mode:
|
||||
type: toggle
|
||||
label: Production mode
|
||||
help: When enabled, Quark will render with minified CSS
|
||||
label: THEME_QUARK.ADMIN.PRODUCTION_MODE
|
||||
help: THEME_QUARK.ADMIN.PRODUCTION_MODE_HELP
|
||||
highlight: 1
|
||||
default: 1
|
||||
options:
|
||||
|
|
@ -36,33 +36,33 @@ form:
|
|||
grid-size:
|
||||
type: select
|
||||
label: THEME_QUARK.ADMIN.GRID_SIZE
|
||||
help: The maximum width of the theme
|
||||
help: THEME_QUARK.ADMIN.GRID_SIZE_HELP
|
||||
size: small
|
||||
options:
|
||||
'': None (full width)
|
||||
grid-xl: Extra Large
|
||||
grid-lg: Large
|
||||
grid-md: Medium
|
||||
'': THEME_QUARK.ADMIN.GRID_SIZE_NONE
|
||||
grid-xl: THEME_QUARK.ADMIN.GRID_SIZE_EXTRA_LARGE
|
||||
grid-lg: THEME_QUARK.ADMIN.GRID_SIZE_LARGE
|
||||
grid-md: THEME_QUARK.ADMIN.GRID_SIZE_MEDIUM
|
||||
|
||||
header_section:
|
||||
type: section
|
||||
title: Header Defaults
|
||||
title: THEME_QUARK.ADMIN.HEADER_DEFAULTS
|
||||
underline: true
|
||||
|
||||
custom_logo:
|
||||
type: file
|
||||
label: Custom Logo
|
||||
label: THEME_QUARK.ADMIN.CUSTOM_LOGO
|
||||
size: large
|
||||
destination: 'theme://images/logo'
|
||||
multiple: false
|
||||
markdown: true
|
||||
description: Will be used instead of default logo `theme://images/grav-logo.svg`
|
||||
description: THEME_QUARK.ADMIN.CUSTOM_LOGO_DESCRIPTION
|
||||
accept:
|
||||
- image/*
|
||||
|
||||
custom_logo_mobile:
|
||||
type: file
|
||||
label: Mobile Custom Logo
|
||||
label: THEME_QUARK.ADMIN.CUSTOM_LOGO_MOBILE
|
||||
size: large
|
||||
destination: 'theme://images/logo'
|
||||
multiple: false
|
||||
|
|
@ -71,8 +71,8 @@ form:
|
|||
|
||||
header-fixed:
|
||||
type: toggle
|
||||
label: Fixed header
|
||||
help: When enabled, the header will be fixed at the top of the browser
|
||||
label: THEME_QUARK.ADMIN.HEADER_FIXED
|
||||
help: THEME_QUARK.ADMIN.HEADER_FIXED_HELP
|
||||
highlight: 1
|
||||
default: 1
|
||||
options:
|
||||
|
|
@ -83,8 +83,8 @@ form:
|
|||
|
||||
header-animated:
|
||||
type: toggle
|
||||
label: Animated
|
||||
help: When enabled, the header will animate to a smaller header when scrolling
|
||||
label: THEME_QUARK.ADMIN.HEADER_ANIMATED
|
||||
help: THEME_QUARK.ADMIN.HEADER_ANIMATED_HELP
|
||||
highlight: 1
|
||||
default: 1
|
||||
options:
|
||||
|
|
@ -95,8 +95,8 @@ form:
|
|||
|
||||
header-dark:
|
||||
type: toggle
|
||||
label: Dark Style
|
||||
help: When enabled, a dark-friendly style will be used
|
||||
label: THEME_QUARK.ADMIN.HEADER_DARK
|
||||
help: THEME_QUARK.ADMIN.HEADER_DARK_HELP
|
||||
highlight: 0
|
||||
default: 0
|
||||
options:
|
||||
|
|
@ -107,8 +107,8 @@ form:
|
|||
|
||||
header-transparent:
|
||||
type: toggle
|
||||
label: Transparent
|
||||
help: When enabled, a transparent style will be used
|
||||
label: THEME_QUARK.ADMIN.HEADER_TRANSPARENT
|
||||
help: THEME_QUARK.ADMIN.HEADER_TRANSPARENT_HELP
|
||||
highlight: 0
|
||||
default: 0
|
||||
options:
|
||||
|
|
@ -119,13 +119,13 @@ form:
|
|||
|
||||
footer_section:
|
||||
type: section
|
||||
title: Footer Defaults
|
||||
title: THEME_QUARK.ADMIN.FOOTER_DEFAULTS
|
||||
underline: true
|
||||
|
||||
sticky-footer:
|
||||
type: toggle
|
||||
label: Sticky footer
|
||||
help: When enabled, the footer will be sticky at the bottom of the browser
|
||||
label: THEME_QUARK.ADMIN.STICKY_FOOTER
|
||||
help: THEME_QUARK.ADMIN.STICKY_FOOTER_HELP
|
||||
highlight: 1
|
||||
default: 1
|
||||
options:
|
||||
|
|
@ -136,25 +136,25 @@ form:
|
|||
|
||||
blog_section:
|
||||
type: section
|
||||
title: Blog Defaults
|
||||
title: THEME_QUARK.ADMIN.BLOG_DEFAULTS
|
||||
underline: true
|
||||
|
||||
blog-page:
|
||||
type: text
|
||||
label: Blog Page
|
||||
help: The route to the blog page when working with blog sidebar
|
||||
label: THEME_QUARK.ADMIN.BLOG_PAGE
|
||||
help: THEME_QUARK.ADMIN.BLOG_PAGE_HELP
|
||||
size: medium
|
||||
default: '/blog'
|
||||
|
||||
spectre_section:
|
||||
type: section
|
||||
title: Spectre.css Options
|
||||
title: THEME_QUARK.ADMIN.SPECTRE_OPTIONS
|
||||
underline: true
|
||||
|
||||
spectre.exp:
|
||||
type: toggle
|
||||
label: Experimentals CSS
|
||||
help: When enabled, the `spectre-exp.css` file will be included
|
||||
label: THEME_QUARK.ADMIN.SPECTRE_EXP
|
||||
help: THEME_QUARK.ADMIN.SPECTRE_EXP_HELP
|
||||
highlight: 0
|
||||
default: 0
|
||||
options:
|
||||
|
|
@ -165,8 +165,8 @@ form:
|
|||
|
||||
spectre.icons:
|
||||
type: toggle
|
||||
label: Icons CSS
|
||||
help: When enabled, the `spectre-icons.css` file will be included
|
||||
label: THEME_QUARK.ADMIN.SPECTRE_ICONS
|
||||
help: THEME_QUARK.ADMIN.SPECTRE_ICONS_HELP
|
||||
highlight: 0
|
||||
default: 0
|
||||
options:
|
||||
|
|
|
|||
47
themes/quark/blueprints/modular.yaml
Normal file
47
themes/quark/blueprints/modular.yaml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
title: PLUGIN_ADMIN.MODULE
|
||||
extends@: default
|
||||
|
||||
form:
|
||||
fields:
|
||||
tabs:
|
||||
type: tabs
|
||||
active: 1
|
||||
|
||||
fields:
|
||||
content:
|
||||
fields:
|
||||
|
||||
modular_title:
|
||||
type: spacer
|
||||
title: PLUGIN_ADMIN.MODULE_SETUP
|
||||
|
||||
header.onpage_menu:
|
||||
type: toggle
|
||||
style: vertical
|
||||
label: THEME_QUARK.ADMIN.MODULAR.COMMON.SHOW_ONPAGE_MENU
|
||||
help: THEME_QUARK.ADMIN.MODULAR.COMMON.SHOW_ONPAGE_MENU_HELP
|
||||
default: 0
|
||||
highlight: 0
|
||||
options:
|
||||
1: PLUGIN_ADMIN.YES
|
||||
0: PLUGIN_ADMIN.NO
|
||||
|
||||
header.content.items:
|
||||
type: text
|
||||
label: PLUGIN_ADMIN.ITEMS
|
||||
default: '@self.modular'
|
||||
size: medium
|
||||
|
||||
header.content.order.by:
|
||||
type: text
|
||||
label: PLUGIN_ADMIN.ORDER_BY
|
||||
placeholder: date
|
||||
help:
|
||||
size: small
|
||||
|
||||
header.content.order.dir:
|
||||
type: text
|
||||
label: PLUGIN_ADMIN.ORDER
|
||||
help: '"desc" or "asc" are valid values'
|
||||
placeholder: desc
|
||||
size: small
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 13 KiB |
|
|
@ -1 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" viewBox="0 0 504 140" clip-rule="evenodd"><path d="m 103.98448,92.016725 -0.38473,9.425875 H 53.136062 q 0.769459,-15.838033 0.769459,-43.859165 0,-24.109714 -0.769459,-39.627137 h 11.926614 q -0.769459,12.952559 -0.769459,39.627137 0,21.929581 -0.705337,35.138627 19.236474,0 40.3966,-0.705337 z m 65.46812,-74.060427 -0.3206,9.041143 q -12.69608,-0.641216 -26.22573,-0.641216 -0.12824,12.311344 -0.12824,31.22721 0,20.903636 0.64121,43.859165 h -11.73425 q 0.76946,-21.865462 0.76946,-43.859165 0,-18.65938 -0.38473,-31.22721 -9.48999,0 -26.67457,0.769459 l 0.3206,-9.169386 z m 58.73537,74.445156 -1.28243,9.041146 h -46.55227 l 1.28243,-8.656416 q 16.60749,-11.413642 23.34026,-19.04411 6.73276,-7.69459 6.73276,-17.697557 0,-13.529653 -18.08228,-13.529653 -7.75872,0 -12.31135,1.025945 l 1.28243,-9.041143 q 4.745,-1.282432 12.43959,-1.282432 14.23499,0 21.096,5.770943 6.86101,5.770942 6.86101,14.042626 0,12.311344 -8.97702,21.801338 -8.9129,9.489994 -21.86546,17.8258 v 0.512972 q 18.21053,0 36.03633,-0.769459 z m 73.93218,-25.520389 q 0,15.389179 -7.63047,25.776876 -7.63047,10.387699 -21.54485,10.387699 -13.33729,0 -20.45479,-9.489997 -7.11749,-9.489994 -7.11749,-24.173837 0,-15.389179 7.63047,-25.776875 7.63046,-10.387697 21.54485,-10.387697 13.33729,0 20.45478,9.489995 7.1175,9.489994 7.1175,24.173836 z m -10.83655,2.564863 q 0,-12.631952 -4.80912,-20.26242 -4.80912,-7.630468 -13.27317,-7.502225 -8.14344,0 -12.56783,7.245739 -4.42439,7.245739 -4.42439,17.889921 0,12.631952 4.80912,20.26242 4.80912,7.630468 13.27317,7.502225 7.4381,0 12.1831,-6.668644 4.80912,-6.668645 4.80912,-18.467016 z m 75.85583,22.955526 -1.28243,9.041146 h -46.55227 l 1.28243,-8.656416 q 16.60749,-11.413642 23.34026,-19.04411 6.73276,-7.69459 6.73276,-17.697557 0,-13.529653 -18.08228,-13.529653 -7.75871,0 -12.31135,1.025945 l 1.28244,-9.041143 q 4.74499,-1.282432 12.43958,-1.282432 14.23499,0 21.096,5.770943 6.86101,5.770942 6.86101,14.042626 0,12.311344 -8.97702,21.801338 -8.9129,9.489994 -21.86546,17.8258 v 0.512972 q 18.21053,0 36.03633,-0.769459 z m 73.73981,-10.900669 -1.34655,10.067089 h -11.09303 q 0,11.926616 0.76946,31.034846 h -10.96479 q 0.51297,-16.54336 0.51297,-31.034846 h -36.29282 l -1.34655,-8.07932 q 0,-1.667161 17.37695,-25.199781 17.37695,-23.532621 17.31283,-24.494444 h 13.40141 q -0.76946,14.491477 -0.76946,48.411794 5.83506,0 12.43958,-0.705338 z M 419.39851,42.899593 h -0.51297 q 0,1.731283 -13.78614,19.941812 -13.78614,18.210529 -13.78614,19.236475 v 0.512972 q 11.2854,0 27.37992,-0.448851 0.12824,-19.87769 0.70533,-39.242408 z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" viewBox="0 0 504 140" clip-rule="evenodd"><path d="M235.83 71.56h-7.98c-1.2 0-2.2 1-2.2 2.2V89.1l-.15.13c-4.7 3.96-10.64 6.14-16.72 6.14-14.36 0-26.04-11.68-26.04-26.04s11.68-26.04 26.04-26.04c5.58 0 10.92 1.76 15.44 5.1.87.66 2.1.57 2.86-.2l5.7-5.7c.44-.44.67-1.05.63-1.68-.02-.62-.32-1.2-.82-1.6-6.76-5.35-15.2-8.3-23.8-8.3-21.18 0-38.42 17.23-38.42 38.4 0 21.2 17.24 38.42 38.42 38.42 10.93 0 21.4-4.7 28.7-12.9.35-.4.55-.93.55-1.47v-19.6c0-1.22-.98-2.2-2.2-2.2M502.8 34.44c-.4-.6-1.1-.98-1.84-.98h-8.7c-.87 0-1.66.52-2 1.32l-24.5 56.84-24.9-56.85c-.36-.8-1.15-1.3-2.02-1.3h-8.72c-.74 0-1.44.36-1.84.98-.4.62-.48 1.4-.17 2.1l30.2 68.85c.34.8 1.13 1.32 2 1.32h11c.88 0 1.67-.53 2.02-1.33l29.66-68.87c.3-.68.22-1.47-.2-2.1"/><path d="M388.68 34.77c-.35-.8-1.14-1.32-2-1.32h-11c-.88 0-1.67.53-2.02 1.33L344 103.64c-.3.68-.22 1.47.18 2.08.4.62 1.1 1 1.84 1h8.7c.86 0 1.66-.53 2-1.33l24.5-56.86 24.9 56.86c.36.8 1.15 1.32 2.02 1.32h8.72c.74 0 1.44-.38 1.84-1 .4-.62.47-1.4.17-2.1l-30.2-68.85zM309.2 81.52l.47-.22c8.68-4.2 14.28-13.1 14.28-22.67 0-13.88-11.3-25.18-25.17-25.18H266.9c-1.2 0-2.2 1-2.2 2.2v68.86c0 1.23 1 2.22 2.2 2.22h8c1.2 0 2.2-1 2.2-2.2V45.8h21.68c7.05 0 12.8 5.75 12.8 12.8 0 5.9-4 11-9.73 12.42-1.04.26-2.07.4-3.07.4h-7.98c-.83 0-1.6.46-1.96 1.2-.38.73-.3 1.62.2 2.3l22.6 30.87c.42.58 1.08.92 1.78.92h9.9c.84 0 1.6-.47 1.97-1.2.37-.75.3-1.64-.2-2.3l-15.9-21.7zM107.2 80.97c-7.26-4.8-11.4-8.85-15.02-16.1-2.47 4.97-8.24 12.37-17.96 18.2-4.86 15.1-27.96 44-35.43 39.9-2.22-1.2-2.64-2.8-2.15-4.45.54-4.13 9.08-13.62 9.08-13.62s.18 2 2.92 6.18c-3.6-11.2 5.96-25.03 8.5-29.73 3.98-1.27 4.27-6.4 4.27-6.4.26-7.9-3.28-13.63-6.7-17.05 2.46 3 3.25 7.54 3.37 11.7v.02c0 .47 0 .93 0 1.4-.12 3.43-1.16 8.18-3.38 8.18v.03c-2.28-.1-5.1.4-7.63 1.18l-5.6 1.34s2.98-.13 4.6 1.25c-1.8 2.9-5.78 6.53-10.22 8.58-6.45 3-8.3-2.96-5.03-6.84.8-.94 1.62-1.74 2.38-2.4-.5-.5-.8-1.2-.88-2.06 0 0 0 0 0-.02-.46-1.97-.2-4.54 2.6-8.62.54-.86 1.2-1.75 2-2.65.02-.04.04-.07.07-.1.03-.04.07-.08.1-.12.02-.02.04-.04.06-.06.2-.23.42-.45.64-.67 3.34-3.4 8.6-6.96 16.9-10.15C64.4 43.68 67.94 41 67.94 41c1.07-1.1 2.94-2.45 3.63-2.8-5.05-8.77-6.07-21.15-4.75-24.5-.1.2-.2.38-.3.57.5-1.14.83-1.5 1.34-2.1 1.38-1.64 6.06-2.5 7.74.96.9 1.84 1.06 4.23 1.03 6.02-3.7-.2-7.06 4.04-7.06 4.04s3.07-1.46 6.88-1.5c0 0 1 .9 2.28 2.56-1.7 3.2-4.52 10.02-2.5 17.16.35 1.4.86 2.62 1.5 3.65.02.05.04.1.07.14.05.07.1.13.14.2 3.37 5.06 9.54 5.66 9.54 5.66-2.9-1.45-5.27-3.76-6.8-6.56-.82-1.5-1.3-2.77-1.6-3.77-1.64-6.3.77-10 2.14-12.47 3.17-4.9 8.95-7.9 15.15-7.18 8.72 1 14.97 8.86 13.98 17.57-.6 5.32-3.78 9.72-8.15 12.12 1.05 2.84-.07 6.28-.07 6.28 2.64 3.32 2.76 5.23 2.67 7-3.36-.55-6.62 1.7-6.62 1.7s6.48-1.53 10.24 1.82c2.44 2.64 4.08 5 5.05 6.77 1.4 2.5 7.86 2.68 7.12 7.2-.74 4.5-5.68 4.53-13.4-.57M69.56 0C31.15 0 0 31.15 0 69.57c0 38.42 31.15 69.57 69.57 69.57 38.42 0 69.57-31.15 69.57-69.57C139.14 31.15 108 0 69.57 0M73.8 51.7c.8-.82.8-2.14 0-2.95-.82-.82-2.14-.82-2.95 0-.82.8-.82 2.13 0 2.94.8.8 2.13.8 2.95 0M66.45 53.15c-.82.8-.82 2.13 0 2.95.8.8 2.13.8 2.94 0 .8-.82.8-2.14 0-2.95-.82-.8-2.14-.8-2.95 0"/><path d="M79.23 54.23c-1.27-1.27-3.34-1.27-4.6 0l-2.72 2.7c-1.27 1.3-1.27 3.35 0 4.63l3 2.97c1.26 1.28 3.32 1.28 4.6 0l2.7-2.7c1.28-1.28 1.28-3.35 0-4.62l-2.97-2.97zM95.76 41.44c-2.15-2.57 1.87-7.25 4.4-4.46 4.64 5.15-2.25 7.04-4.4 4.46m9.24 2.7c3.45-6.56-1.42-10.4-4.77-13.53-5.36-5.03-10.7-7.2-16.8-.23-6.1 6.98-2.24 15.07 3.35 19.06 5.58 4 14.78 1.25 18.22-5.3"/></svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 3.4 KiB |
|
|
@ -1,7 +1,42 @@
|
|||
en:
|
||||
THEME_QUARK:
|
||||
ADMIN:
|
||||
GRID_SIZE: Grid size
|
||||
PRODUCTION_MODE: "Production Mode"
|
||||
PRODUCTION_MODE_HELP: "When enabled, Quark will render with minified CSS"
|
||||
GRID_SIZE: "Grid Size"
|
||||
GRID_SIZE_HELP: "The maximum width of the theme"
|
||||
GRID_SIZE_NONE: "None (full width)"
|
||||
GRID_SIZE_EXTRA_LARGE: "Extra Large"
|
||||
GRID_SIZE_LARGE: "Large"
|
||||
GRID_SIZE_MEDIUM: "Medium"
|
||||
HEADER_DEFAULTS: "Header Defaults"
|
||||
CUSTOM_LOGO: "Custom Logo"
|
||||
CUSTOM_LOGO_DESCRIPTION: "Will be used instead of the default logo `theme://images/grav-logo.svg`"
|
||||
CUSTOM_LOGO_MOBILE: "Mobile Custom Logo"
|
||||
HEADER_FIXED: "Fixed Header"
|
||||
HEADER_FIXED_HELP: "When enabled, the header will be fixed at the top of the browser"
|
||||
HEADER_ANIMATED: "Animated"
|
||||
HEADER_ANIMATED_HELP: "When enabled, the header will animate to a smaller size when scrolling"
|
||||
HEADER_DARK: "Dark Style"
|
||||
HEADER_DARK_HELP: "When enabled, a dark-friendly style will be used"
|
||||
HEADER_TRANSPARENT: "Transparent"
|
||||
HEADER_TRANSPARENT_HELP: "When enabled, a transparent style will be used"
|
||||
FOOTER_DEFAULTS: "Footer Defaults"
|
||||
STICKY_FOOTER: "Sticky Footer"
|
||||
STICKY_FOOTER_HELP: "When enabled, the footer will be sticky at the bottom of the browser"
|
||||
BLOG_DEFAULTS: "Blog Defaults"
|
||||
BLOG_PAGE: "Blog Page"
|
||||
BLOG_PAGE_HELP: "The route to the blog page when working with the blog sidebar"
|
||||
SPECTRE_OPTIONS: "Spectre.css Options"
|
||||
SPECTRE_EXP: "Experimental CSS"
|
||||
SPECTRE_EXP_HELP: "When enabled, the `spectre-exp.css` file will be included"
|
||||
SPECTRE_ICONS: "Icons CSS"
|
||||
SPECTRE_ICONS_HELP: "When enabled, the `spectre-icons.css` file will be included"
|
||||
|
||||
MODULAR:
|
||||
COMMON:
|
||||
SHOW_ONPAGE_MENU: Show navigation on one-page sites
|
||||
SHOW_ONPAGE_MENU_HELP: On single-page sites, it adds smooth scrolling on click navigation and automatically selects the correct navigation elements as you scroll through different sections.
|
||||
BLOG:
|
||||
ITEM:
|
||||
CONTINUE_READING: Continue reading...
|
||||
|
|
@ -50,6 +85,43 @@ de:
|
|||
|
||||
es:
|
||||
THEME_QUARK:
|
||||
ADMIN:
|
||||
PRODUCTION_MODE: "Modo de producción"
|
||||
PRODUCTION_MODE_HELP: "Cuando está habilitado, Quark renderizará con CSS minificado"
|
||||
GRID_SIZE: "Tamaño de la cuadrícula"
|
||||
GRID_SIZE_HELP: "El ancho máximo del tema"
|
||||
GRID_SIZE_NONE: "Ninguno (ancho completo)"
|
||||
GRID_SIZE_EXTRA_LARGE: "Extra Grande"
|
||||
GRID_SIZE_LARGE: "Grande"
|
||||
GRID_SIZE_MEDIUM: "Mediano"
|
||||
HEADER_DEFAULTS: "Configuración predeterminada del encabezado"
|
||||
CUSTOM_LOGO: "Logo personalizado"
|
||||
CUSTOM_LOGO_DESCRIPTION: "Se utilizará en lugar del logo predeterminado `theme://images/grav-logo.svg`"
|
||||
CUSTOM_LOGO_MOBILE: "Logo personalizado para móviles"
|
||||
HEADER_FIXED: "Encabezado fijo"
|
||||
HEADER_FIXED_HELP: "Cuando está habilitado, el encabezado se fijará en la parte superior del navegador"
|
||||
HEADER_ANIMATED: "Animado"
|
||||
HEADER_ANIMATED_HELP: "Cuando está habilitado, el encabezado se animará a un encabezado más pequeño al desplazarse"
|
||||
HEADER_DARK: "Estilo oscuro"
|
||||
HEADER_DARK_HELP: "Cuando está habilitado, se utilizará un estilo compatible con el modo oscuro"
|
||||
HEADER_TRANSPARENT: "Transparente"
|
||||
HEADER_TRANSPARENT_HELP: "Cuando está habilitado, se utilizará un estilo transparente"
|
||||
FOOTER_DEFAULTS: "Configuración predeterminada del pie de página"
|
||||
STICKY_FOOTER: "Pie de página fijo"
|
||||
STICKY_FOOTER_HELP: "Cuando está habilitado, el pie de página se fijará en la parte inferior del navegador"
|
||||
BLOG_DEFAULTS: "Configuración predeterminada del blog"
|
||||
BLOG_PAGE: "Página del blog"
|
||||
BLOG_PAGE_HELP: "La ruta a la página del blog cuando se trabaja con la barra lateral del blog"
|
||||
SPECTRE_OPTIONS: "Opciones de Spectre.css"
|
||||
SPECTRE_EXP: "CSS experimental"
|
||||
SPECTRE_EXP_HELP: "Cuando está habilitado, se incluirá el archivo `spectre-exp.css`"
|
||||
SPECTRE_ICONS: "CSS de iconos"
|
||||
SPECTRE_ICONS_HELP: "Cuando está habilitado, se incluirá el archivo `spectre-icons.css`"
|
||||
|
||||
MODULAR:
|
||||
COMMON:
|
||||
SHOW_ONPAGE_MENU: Mostrar navegación en sitios de una página
|
||||
SHOW_ONPAGE_MENU_HELP: En sitios de una sola página, añade desplazamiento suave al hacer clic en la navegación y selecciona automáticamente los elementos de navegación correctos a medida que te desplazas por las diferentes secciones.
|
||||
BLOG:
|
||||
ITEM:
|
||||
CONTINUE_READING: Continuar leyendo...
|
||||
|
|
@ -72,6 +144,32 @@ es:
|
|||
SYNDICATE:
|
||||
HEADLINE: Distribuir
|
||||
|
||||
et:
|
||||
THEME_QUARK:
|
||||
ADMIN:
|
||||
GRID_SIZE: Ruudustiku suurus
|
||||
BLOG:
|
||||
ITEM:
|
||||
CONTINUE_READING: Loe edasi...
|
||||
NEXT_POST: Järgmine postitus
|
||||
PREV_POST: Eelmine postitus
|
||||
SIDEBAR:
|
||||
SIMPLE_SEARCH:
|
||||
HEADLINE: Otsi
|
||||
RELATED_POSTS:
|
||||
HEADLINE: Seotud postitused
|
||||
RANDOM_ARTICLE:
|
||||
HEADLINE: Juhuslik artikkel
|
||||
FEELING_LUCKY: Ehk mul veab!
|
||||
SOME_TEXT_WIDGET:
|
||||
HEADLINE: Mõni teksti vidin
|
||||
POPULAR_TAGS:
|
||||
HEADLINE: Populaarsed märksõnad
|
||||
ARCHIVES:
|
||||
HEADLINE: Arhiiv
|
||||
SYNDICATE:
|
||||
HEADLINE: Voog
|
||||
|
||||
fr:
|
||||
THEME_QUARK:
|
||||
TRANSLATION_TEST: Quark !
|
||||
|
|
@ -121,6 +219,32 @@ it:
|
|||
SYNDICATE:
|
||||
HEADLINE: Feed
|
||||
|
||||
pl:
|
||||
THEME_QUARK:
|
||||
ADMIN:
|
||||
GRID_SIZE: Rozmiar siatki
|
||||
BLOG:
|
||||
ITEM:
|
||||
CONTINUE_READING: Kontynuuj czytanie...
|
||||
NEXT_POST: Następny wpis
|
||||
PREV_POST: Poprzedni wpis
|
||||
SIDEBAR:
|
||||
SIMPLE_SEARCH:
|
||||
HEADLINE: Szukaj
|
||||
RELATED_POSTS:
|
||||
HEADLINE: Powiązane wpisy
|
||||
RANDOM_ARTICLE:
|
||||
HEADLINE: Losowy artykuł
|
||||
FEELING_LUCKY: Mam szczęście!
|
||||
SOME_TEXT_WIDGET:
|
||||
HEADLINE: Jakiś widżet tekstowy
|
||||
POPULAR_TAGS:
|
||||
HEADLINE: Popularne tagi
|
||||
ARCHIVES:
|
||||
HEADLINE: Archiwa
|
||||
SYNDICATE:
|
||||
HEADLINE: Syndykacja
|
||||
|
||||
ro:
|
||||
THEME_QUARK:
|
||||
BLOG:
|
||||
|
|
@ -288,3 +412,27 @@ zh:
|
|||
HEADLINE: 归档
|
||||
SYNDICATE:
|
||||
HEADLINE: 订阅流
|
||||
|
||||
ja:
|
||||
THEME_QUARK:
|
||||
BLOG:
|
||||
ITEM:
|
||||
CONTINUE_READING: 続きを読む...
|
||||
NEXT_POST: 次の記事
|
||||
PREV_POST: 前の記事
|
||||
SIDEBAR:
|
||||
SIMPLE_SEARCH:
|
||||
HEADLINE: 検索
|
||||
RELATED_POSTS:
|
||||
HEADLINE: 関連した記事
|
||||
RANDOM_ARTICLE:
|
||||
HEADLINE: 任意の記事
|
||||
FEELING_LUCKY: I'm feeling Lucky
|
||||
SOME_TEXT_WIDGET:
|
||||
HEADLINE: Some Text Widget
|
||||
POPULAR_TAGS:
|
||||
HEADLINE: 人気のタグ
|
||||
ARCHIVES:
|
||||
HEADLINE: アーカイブ
|
||||
SYNDICATE:
|
||||
HEADLINE: RSS配信
|
||||
|
|
|
|||
7
themes/quark/templates/comments.html.twig
Normal file
7
themes/quark/templates/comments.html.twig
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{% extends 'partials/base.html.twig' %}
|
||||
|
||||
{% block content %}
|
||||
{{ page.content|raw }}
|
||||
|
||||
{{ comments_section() }}
|
||||
{% endblock %}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{% for month,items in archives_data %}
|
||||
<li>
|
||||
<a href="{{ base_url }}/{{ config.plugins.archives.taxonomy_names.month }}{{ config.system.param_sep }}{{ month|date('M_Y')|lower|e('url') }}">
|
||||
<a href="{{ base_url }}/{{ config.plugins.archives.taxonomy_names.month }}{{ config.system.param_sep }}{{ month|date(config.plugins.archives.taxonomy_values.month)|lower|e('url') }}">
|
||||
{% if archives_show_count %}
|
||||
<span class="label label-rounded label-primary">{{ items|length }}</span>
|
||||
{% endif %}
|
||||
|
|
|
|||
|
|
@ -19,8 +19,8 @@
|
|||
|
||||
{% block stylesheets %}
|
||||
{% do assets.addCss('theme://css-compiled/spectre'~compress) %}
|
||||
{% if theme_var('spectre.exp') %}{% do assets.addCss('theme://css-compiled/spectre-exp'~compress) %}{% endif %}
|
||||
{% if theme_var('spectre.icons') %}{% do assets.addCss('theme://css-compiled/spectre-icons'~compress) %}{% endif %}
|
||||
{% if theme_var('spectre.exp') %}{% do assets.addCss('theme://css-compiled/spectre-exp'~compress) %}{% endif %}
|
||||
{% if theme_var('spectre.icons') %}{% do assets.addCss('theme://css-compiled/spectre-icons'~compress) %}{% endif %}
|
||||
{% do assets.addCss('theme://css-compiled/theme'~compress) %}
|
||||
{% do assets.addCss('theme://css/custom.css') %}
|
||||
{% do assets.addCss('theme://css/line-awesome.min.css') %}
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
</nav>
|
||||
|
||||
{% if config.plugins.login.enabled and grav.user.username %}
|
||||
<span class="login-status-wrapper"><i class="fa fa-user"></i> {% include 'partials/login-status.html.twig' %}</span>
|
||||
<span class="login-status-wrapper"><i class="fa fa-user"></i> {% include 'partials/login-status.html.twig' ignore missing %}</span>
|
||||
{% endif %}
|
||||
|
||||
</section>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
<section id="footer" class="section bg-gray">
|
||||
<section class="container {{ grid_size }}">
|
||||
<p>made with <i class="fa fa-heart-o pulse "></i> by Elena & Philipp Rauch.</p>
|
||||
<p><a href="impressum">Impressum</a> | <a href="datenschutz">Datenschutz</a></p>
|
||||
<p><a href="https://getgrav.org">Grav</a> was <i class="fa fa-code"></i> with <i class="fa fa-heart-o pulse "></i> by <a href="https://trilby.media">Trilby Media</a>.</p>
|
||||
</section>
|
||||
</section>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<li class="menu-item">
|
||||
{% if config.plugins.relatedpages.show_score %}
|
||||
<div class="menu-badge">
|
||||
<span class="label lable-primary">{{ score }}</span>
|
||||
<span class="label label-primary">{{ score }}</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
<a href="{{ related.url }}" title="{{ related.title }}">{{ related.title }}</a>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
{% if config.plugins.taxonomylist.enabled %}
|
||||
<div class="sidebar-content">
|
||||
<h4>{{ 'THEME_QUARK.SIDEBAR.POPULAR_TAGS.HEADLINE'|t }}</h4>
|
||||
{% include 'partials/taxonomylist.html.twig' with {'base_url':new_base_url, 'taxonomy':'tag'} %}
|
||||
{% include 'partials/taxonomylist.html.twig' with {'base_url':new_base_url, 'taxonomy':'tag', 'children_only':true} %}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if config.plugins.archives.enabled %}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{% set taxlist = children_only is defined ? taxonomylist.getChildPagesTags() : taxonomylist.get() %}
|
||||
{% set taxlist = children_only is defined ? taxonomylist.getChildPagesTags(of_page, children_only) : taxonomylist.get() %}
|
||||
|
||||
{% if taxlist %}
|
||||
<span class="tags">
|
||||
|
|
|
|||
3680
themes/quark/yarn.lock
Normal file
3680
themes/quark/yarn.lock
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue