mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-03 16:48:53 +00:00
Merge branch 'develop' of https://github.com/pmoreno-rodriguez/grav-theme-future2021 into develop
This commit is contained in:
commit
c31fa9a0c4
15 changed files with 3468 additions and 172 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
# v1.0.3
|
||||||
|
## --/--/----
|
||||||
|
|
||||||
|
1. [](#improved)
|
||||||
|
* Updated Fontawesome CSS.
|
||||||
|
* Updated Demo content
|
||||||
|
*
|
||||||
# v1.0.2
|
# v1.0.2
|
||||||
## 11/09/2022
|
## 11/09/2022
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ miniposts: true
|
||||||
miniposts_number: 3
|
miniposts_number: 3
|
||||||
latestposts: true
|
latestposts: true
|
||||||
miniposts_category: minipost
|
miniposts_category: minipost
|
||||||
displaycustommenus:
|
custommenus:
|
||||||
enabled: false
|
enabled: false
|
||||||
dropdown:
|
dropdown:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
|
@ -2036,11 +2036,12 @@ ul.icons li > * .label {
|
||||||
ul.posts {
|
ul.posts {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
}
|
}
|
||||||
ul.posts li {
|
ul.posts li {
|
||||||
border-top: dotted 1px rgba(160, 160, 160, 0.3);
|
border-top: dotted 1px rgba(160, 160, 160, 0.3);
|
||||||
margin: 1.5em 0 0 0;
|
margin: 0.25em 0 0 0;
|
||||||
padding: 1.5em 0 0 0;
|
padding: 0.25em 0 0 0;
|
||||||
}
|
}
|
||||||
ul.posts li:first-child {
|
ul.posts li:first-child {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
|
@ -2076,6 +2077,7 @@ ul.posts article header {
|
||||||
ul.posts article header h3 {
|
ul.posts article header h3 {
|
||||||
font-size: 0.7em;
|
font-size: 0.7em;
|
||||||
margin-top: 0.125em;
|
margin-top: 0.125em;
|
||||||
|
margin-bottom: 0.25em;
|
||||||
}
|
}
|
||||||
ul.posts article header .published {
|
ul.posts article header .published {
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -2176,6 +2178,12 @@ ul.posts article header > :last-child {
|
||||||
margin: 0 0 3em 0;
|
margin: 0 0 3em 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.post img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
.post .modular-row.gallery-container {
|
||||||
|
margin-bottom: 2.75rem;
|
||||||
|
}
|
||||||
.post > header {
|
.post > header {
|
||||||
display: -moz-flex;
|
display: -moz-flex;
|
||||||
display: -ms-flex;
|
display: -ms-flex;
|
||||||
|
@ -2684,6 +2692,7 @@ table.alt tfoot {
|
||||||
.menulink {
|
.menulink {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin-top: -0.3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.menulink > li,
|
ul.menulink > li,
|
||||||
|
|
|
@ -13,6 +13,14 @@
|
||||||
margin: 0 0 _size(section-spacing) 0;
|
margin: 0 0 _size(section-spacing) 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modular-row.gallery-container {
|
||||||
|
margin-bottom: 2.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
> header {
|
> header {
|
||||||
@include vendor('display', 'flex');
|
@include vendor('display', 'flex');
|
||||||
border-bottom: solid 1px _palette(border);
|
border-bottom: solid 1px _palette(border);
|
||||||
|
|
|
@ -9,11 +9,12 @@
|
||||||
ul.posts {
|
ul.posts {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
border-top: dotted 1px _palette(border);
|
border-top: dotted 1px _palette(border);
|
||||||
margin: (_size(element-margin) * 0.75) 0 0 0;
|
margin: (_size(element-margin) * 0.125) 0 0 0;
|
||||||
padding: (_size(element-margin) * 0.75) 0 0 0;
|
padding: (_size(element-margin) * 0.125) 0 0 0;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
|
@ -46,6 +47,7 @@
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 0.7em;
|
font-size: 0.7em;
|
||||||
margin-top: 0.125em;
|
margin-top: 0.125em;
|
||||||
|
margin-bottom: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.published {
|
.published {
|
||||||
|
|
|
@ -11,17 +11,18 @@
|
||||||
.menulink {
|
.menulink {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin-top: -0.3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.menulink > li,
|
ul.menulink > li,
|
||||||
ul.menulink > li > ul
|
ul.menulink > li > ul
|
||||||
{
|
{
|
||||||
list-style: none;
|
list-style: none;
|
||||||
font-family: _font(family-heading);
|
font-family: _font(family-heading);
|
||||||
padding: 0.1em 0 0 0;
|
padding: 0.1em 0 0 0;
|
||||||
margin: 0em;
|
margin: 0em;
|
||||||
line-height: 2.3em;
|
line-height: 2.3em;
|
||||||
}
|
}
|
||||||
ul.menulink > li a.tags {
|
ul.menulink > li a.tags {
|
||||||
border: dotted 1px rgba(119, 118, 118, 0.65);
|
border: dotted 1px rgba(119, 118, 118, 0.65);
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
|
@ -74,7 +75,8 @@ ul.subitem_hide {
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
ul.subitem_hide > li > ul,
|
ul.subitem_hide > li > ul,
|
||||||
ul.subitem_hide > li a span {
|
ul.subitem_hide > li a span
|
||||||
|
{
|
||||||
|
|
||||||
-webkit-transition: color 0.2s ease;
|
-webkit-transition: color 0.2s ease;
|
||||||
transition: color 0.2s ease;
|
transition: color 0.2s ease;
|
||||||
|
@ -85,8 +87,7 @@ ul.subitem_hide > li a span {
|
||||||
ul.subitem_hide > li {
|
ul.subitem_hide > li {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin-left: 0.4em;
|
margin-left: 0.4em;
|
||||||
|
}
|
||||||
}
|
|
||||||
.dropdown-btn {
|
.dropdown-btn {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,82 +6,82 @@
|
||||||
|
|
||||||
/* Intro */
|
/* Intro */
|
||||||
|
|
||||||
#intro {
|
#intro {
|
||||||
.logo {
|
.logo {
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
margin: 0 0 (_size(element-margin) * 0.5) 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 4em;
|
width: 4em;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
background-image: svg-url('<svg xmlns="http://www.w3.org/2000/svg" width="100px" height="100px" viewBox="0 0 100 100" preserveAspectRatio="none" zoomAndPan="disable"><polygon points="0,0 100,0 100,25 50,0 0,25" style="fill:#{_palette(bg-alt)}" /><polygon points="0,100 100,100 100,75 50,100 0,75" style="fill:#{_palette(bg-alt)}" /></svg>');
|
background-image: svg-url('<svg xmlns="http://www.w3.org/2000/svg" width="100px" height="100px" viewBox="0 0 100 100" preserveAspectRatio="none" zoomAndPan="disable"><polygon points="0,0 100,0 100,25 50,0 0,25" style="fill:#{_palette(bg-alt)}" /><polygon points="0,100 100,100 100,75 50,100 0,75" style="fill:#{_palette(bg-alt)}" /></svg>');
|
||||||
background-position: top left;
|
background-position: top left;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
content: '';
|
content: '';
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
left: 0;
|
left: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
display: block;
|
|
||||||
margin-left: -0.25em;
|
|
||||||
width: 4.5em;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
margin-left: -0.25em;
|
||||||
|
width: 4.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
h2 {
|
||||||
|
font-size: 2em;
|
||||||
|
font-weight: _font(weight-heading-extrabold);
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include breakpoint('<=large') {
|
||||||
|
margin: 0 0 _size(section-spacing) 0;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
header {
|
header {
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
font-weight: _font(weight-heading-extrabold);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 0.8em;
|
font-size: 0.7em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@include breakpoint('<=large') {
|
@include breakpoint('<=small') {
|
||||||
margin: 0 0 _size(section-spacing) 0;
|
margin: 0 0 _size(section-spacing-small) 0;
|
||||||
text-align: center;
|
padding: 1.25em 0;
|
||||||
|
|
||||||
header {
|
> :last-child {
|
||||||
h2 {
|
margin-bottom: 0;
|
||||||
font-size: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
font-size: 0.7em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint('<=small') {
|
.logo {
|
||||||
margin: 0 0 _size(section-spacing-small) 0;
|
margin: 0 0 (_size(element-margin) * 0.25) 0;
|
||||||
padding: 1.25em 0;
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
h2 {
|
||||||
|
font-size: 1.25em;
|
||||||
|
}
|
||||||
|
|
||||||
> :last-child {
|
> :last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
|
||||||
margin: 0 0 (_size(element-margin) * 0.25) 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
h2 {
|
|
||||||
font-size: 1.25em;
|
|
||||||
}
|
|
||||||
|
|
||||||
> :last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
3150
assets/sass/main.css
Normal file
3150
assets/sass/main.css
Normal file
File diff suppressed because it is too large
Load diff
|
@ -30,11 +30,11 @@ form:
|
||||||
type: toggle
|
type: toggle
|
||||||
label: FUTURE.ADMIN.THEME.PRODUCTION_MODE
|
label: FUTURE.ADMIN.THEME.PRODUCTION_MODE
|
||||||
help: FUTURE.ADMIN.THEME.PRODUCTION_MODE_HELP
|
help: FUTURE.ADMIN.THEME.PRODUCTION_MODE_HELP
|
||||||
highlight: 1
|
|
||||||
default: 1
|
default: 1
|
||||||
|
highlight: 1
|
||||||
options:
|
options:
|
||||||
1: PLUGIN_ADMIN.ENABLED
|
|
||||||
0: PLUGIN_ADMIN.DISABLED
|
0: PLUGIN_ADMIN.DISABLED
|
||||||
|
1: PLUGIN_ADMIN.ENABLED
|
||||||
validate:
|
validate:
|
||||||
type: bool
|
type: bool
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ form:
|
||||||
blog_page:
|
blog_page:
|
||||||
type: text
|
type: text
|
||||||
label: FUTURE.ADMIN.THEME.BLOG_PAGE
|
label: FUTURE.ADMIN.THEME.BLOG_PAGE
|
||||||
help: FUTURE.ADMIN.THEME.BLOG_PAGE_DESCRIPTION
|
help: FUTURE.ADMIN.THEME.BLOG_PAGE_HELP
|
||||||
size: medium
|
size: medium
|
||||||
default: '/blog'
|
default: '/blog'
|
||||||
|
|
||||||
|
@ -156,7 +156,7 @@ form:
|
||||||
footer.button_url:
|
footer.button_url:
|
||||||
type: text
|
type: text
|
||||||
label: FUTURE.ADMIN.THEME.FOOTER_BUTTON_URL
|
label: FUTURE.ADMIN.THEME.FOOTER_BUTTON_URL
|
||||||
social_icons:
|
social_icons_section:
|
||||||
type: fieldset
|
type: fieldset
|
||||||
collapsible: true
|
collapsible: true
|
||||||
collapsed: true
|
collapsed: true
|
||||||
|
@ -179,49 +179,48 @@ form:
|
||||||
.icon:
|
.icon:
|
||||||
type: iconpicker
|
type: iconpicker
|
||||||
label: FUTURE.ADMIN.THEME.FOOTER_SOCIALS_ICON_ICON
|
label: FUTURE.ADMIN.THEME.FOOTER_SOCIALS_ICON_ICON
|
||||||
custommenu_options:
|
custommenu_options_section:
|
||||||
type: fieldset
|
type: fieldset
|
||||||
collapsible: true
|
collapsible: true
|
||||||
collapsed: true
|
collapsed: true
|
||||||
icon: bars
|
icon: bars
|
||||||
title: 'Custom Menu Items'
|
title: FUTURE.ADMIN.THEME.CUSTOM_MENU_TITLE
|
||||||
fields:
|
fields:
|
||||||
displaycustommenus.enabled:
|
custommenus.enabled:
|
||||||
type: toggle
|
type: toggle
|
||||||
label: 'Display Custom Menu Items'
|
label: FUTURE.ADMIN.THEME.CUSTOM_MENU_ENABLE
|
||||||
help: 'Determines if any defined custom menu entries are displayed in the menubar.'
|
help: FUTURE.ADMIN.THEME.CUSTOM_MENU_ENABLE_HELP
|
||||||
default: 0
|
default: 0
|
||||||
highlight: 1
|
highlight: 1
|
||||||
options:
|
options:
|
||||||
'0': No
|
0: PLUGIN_ADMIN.DISABLED
|
||||||
'1': Yes
|
1: PLUGIN_ADMIN.ENABLED
|
||||||
validate:
|
validate:
|
||||||
type: bool
|
type: bool
|
||||||
custommenu:
|
custommenu:
|
||||||
name: menu
|
name: menu
|
||||||
type: list
|
type: list
|
||||||
label: 'Custom Menu Items'
|
label: FUTURE.ADMIN.THEME.CUSTOM_MENU_TITLE
|
||||||
fields:
|
fields:
|
||||||
.text:
|
.text:
|
||||||
type: text
|
type: text
|
||||||
label: Text
|
label: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_TEXT
|
||||||
description: 'Text label for menu item.'
|
description: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_TEXT_DESCRIPTION
|
||||||
.icon:
|
.icon:
|
||||||
type: text
|
type: text
|
||||||
label: Icon
|
label: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_ICON
|
||||||
description: 'Font Awesome icon for menu item.'
|
description: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_ICON_DESCRIPTION
|
||||||
.url:
|
.url:
|
||||||
type: text
|
type: text
|
||||||
label: URL
|
label: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_URL
|
||||||
description: 'URL for menu item.'
|
description: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_URL_DESCRIPTION
|
||||||
.target:
|
.target:
|
||||||
type: select
|
type: select
|
||||||
label: Target
|
label: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_TARGET
|
||||||
default: _self
|
default: _self
|
||||||
size: medium
|
size: medium
|
||||||
options:
|
options:
|
||||||
_blank: 'Open in a new window'
|
_blank: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_TARGET_BLANK
|
||||||
_parent: 'Open in the parent frame'
|
_parent: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_TARGET_PARENT
|
||||||
_top: 'Open in the full body of the window'
|
_self: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_TARGET_SELF
|
||||||
_self: 'Open in the same frame as clicked'
|
_top: FUTURE.ADMIN.THEME.CUSTOM_MENU_ITEM_TARGET_TOP
|
||||||
|
|
||||||
|
|
|
@ -1,42 +1,2 @@
|
||||||
enabled: true
|
enabled: true
|
||||||
production-mode: false
|
production-mode: false
|
||||||
favicon:
|
|
||||||
user/themes/future2021/images/logo/Grav_logo.png:
|
|
||||||
name: Grav_logo.png
|
|
||||||
type: image/png
|
|
||||||
size: 15355
|
|
||||||
path: user/themes/future2021/images/logo/Grav_logo.png
|
|
||||||
blog_page: /blog
|
|
||||||
slogan: 'AYUDA DE GRAV EN ESPAÑOL'
|
|
||||||
custom_logo:
|
|
||||||
user/themes/future2021/images/logo/Grav_logo.png:
|
|
||||||
name: Grav_logo.png
|
|
||||||
type: image/png
|
|
||||||
size: 15355
|
|
||||||
path: user/themes/future2021/images/logo/Grav_logo.png
|
|
||||||
custom_logo_mobile: { }
|
|
||||||
footer:
|
|
||||||
title: ABOUT
|
|
||||||
description: 'Mauris neque quam, fermentum ut nisl vitae, convallis maximus nisl. Sed mattis nunc id lorem euismod amet placerat. Vivamus porttitor magna enim, ac accumsan tortor cursus at phasellus sed ultricies.'
|
|
||||||
copyright_text: 'DESIGN: <a href="https://html5up.net/" target="_blank">HTML5 UP</a>. IMAGES: <a href="http://wallpaperswide.com/" target="_blank">WALLPAPESWIDE</a>.'
|
|
||||||
button_url: about
|
|
||||||
button_text: 'Show more'
|
|
||||||
social:
|
|
||||||
-
|
|
||||||
name: Twitter
|
|
||||||
url: 'https://www.twitter.com'
|
|
||||||
icon: 'fa fa-twitter'
|
|
||||||
-
|
|
||||||
name: Facebook
|
|
||||||
url: 'https://www.facebook.com'
|
|
||||||
icon: 'fa fa-facebook'
|
|
||||||
-
|
|
||||||
name: Instagram
|
|
||||||
url: 'https://www.instagram.com'
|
|
||||||
icon: 'fa fa-instagram'
|
|
||||||
miniposts: true
|
|
||||||
miniposts_number: 3
|
|
||||||
latestposts: true
|
|
||||||
miniposts_category: minipost
|
|
||||||
displaycustommenus:
|
|
||||||
enabled: true
|
|
169
languages.yaml
169
languages.yaml
|
@ -13,7 +13,7 @@ en:
|
||||||
SLOGAN: Slogan
|
SLOGAN: Slogan
|
||||||
BLOG_DEFAULTS: Blog Defaults
|
BLOG_DEFAULTS: Blog Defaults
|
||||||
BLOG_PAGE: Blog Page
|
BLOG_PAGE: Blog Page
|
||||||
BLOG_PAGE_DESCRIPTION: The route to the blog page when working with blog sidebar
|
BLOG_PAGE_HELP: The route to the blog page when working with blog sidebar
|
||||||
MINIPOSTS: Enable Miniposts in Sidebar
|
MINIPOSTS: Enable Miniposts in Sidebar
|
||||||
MINIPOSTS_NUMBER: Miniposts number to show
|
MINIPOSTS_NUMBER: Miniposts number to show
|
||||||
MINIPOSTS_NUMBER_DESCRIPTION: Number of miniposts that will be showed in sidebar
|
MINIPOSTS_NUMBER_DESCRIPTION: Number of miniposts that will be showed in sidebar
|
||||||
|
@ -29,6 +29,20 @@ en:
|
||||||
FOOTER_SOCIALS_ICON_NAME: Social Name
|
FOOTER_SOCIALS_ICON_NAME: Social Name
|
||||||
FOOTER_SOCIALS_ICON_URL: URL Link to Social
|
FOOTER_SOCIALS_ICON_URL: URL Link to Social
|
||||||
FOOTER_SOCIALS_ICON_ICON: Icon to Social
|
FOOTER_SOCIALS_ICON_ICON: Icon to Social
|
||||||
|
CUSTOM_MENU_TITLE: 'Custom Menu Items'
|
||||||
|
CUSTOM_MENU_ENABLE: 'Display Custom Menu Items'
|
||||||
|
CUSTOM_MENU_ENABLE_HELP: 'Determines if any defined custom menu entries are displayed in the menubar.'
|
||||||
|
CUSTOM_MENU_ITEM_TEXT: 'Text'
|
||||||
|
CUSTOM_MENU_ITEM_TEXT_DESCRIPTION: 'Text label for menu item.'
|
||||||
|
CUSTOM_MENU_ITEM_ICON: 'Icon'
|
||||||
|
CUSTOM_MENU_ITEM_ICON_DESCRIPTION: 'Font Awesome icon for menu item.'
|
||||||
|
CUSTOM_MENU_ITEM_URL: 'URL'
|
||||||
|
CUSTOM_MENU_ITEM_URL_DESCRIPTION: 'URL for menu item.'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET: 'Target'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET_BLANK: 'Open in a new window'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET_PARENT: 'Open in the parent frame'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET_SELF: 'Open in the same frame as clicked'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET_TOP: 'Open in the full body of the window'
|
||||||
DEFAULT:
|
DEFAULT:
|
||||||
PRIMARY_IMAGE: Primary image
|
PRIMARY_IMAGE: Primary image
|
||||||
MODULAR:
|
MODULAR:
|
||||||
|
@ -52,7 +66,6 @@ en:
|
||||||
FEATURES_BUTTON_URL: Button URL
|
FEATURES_BUTTON_URL: Button URL
|
||||||
FEATURES_BUTTON_URL_TARGET: Open URL in a new window
|
FEATURES_BUTTON_URL_TARGET: Open URL in a new window
|
||||||
|
|
||||||
|
|
||||||
BLOG:
|
BLOG:
|
||||||
BLOG_TAB: Blog Config
|
BLOG_TAB: Blog Config
|
||||||
BLOG_CONTENT_TITLE: Content Definition
|
BLOG_CONTENT_TITLE: Content Definition
|
||||||
|
@ -120,12 +133,155 @@ en:
|
||||||
HEADLINE: Archives
|
HEADLINE: Archives
|
||||||
SYNDICATE:
|
SYNDICATE:
|
||||||
HEADLINE: Syndicate
|
HEADLINE: Syndicate
|
||||||
|
|
||||||
LOGIN: Log in
|
LOGIN: Log in
|
||||||
LATESTPOSTS: Latest posts
|
LATESTPOSTS: Latest posts
|
||||||
FEATURED: Featured
|
FEATURED: Featured
|
||||||
PRIVACY: By using this form you agree to our
|
PRIVACY: By using this form you agree our terms
|
||||||
FORM_SUMMARY: Here is the summary of what you wrote to us
|
FORM_SUMMARY: Here is the summary of what you wrote to us
|
||||||
|
|
||||||
|
de:
|
||||||
|
FUTURE:
|
||||||
|
ADMIN:
|
||||||
|
THEME:
|
||||||
|
DROPDOWN_MENU: Dropdown-Menü
|
||||||
|
PRODUCTION_MODE: Produktionsmodus
|
||||||
|
PRODUCTION_MODE_HELP: Wenn aktiviert, wird Future mit minimiertem CSS geladen
|
||||||
|
HEADER_SECTION: Kopfbereich
|
||||||
|
FAVICON: Wählen Sie Ihr eigenes Favicon
|
||||||
|
CUSTOM_LOGO: Benutzerdefiniertes Logo
|
||||||
|
CUSTOM_LOGO_DESCRIPTION: Dieses Logo wird anstelle des Standardlogos `theme://images/grav-logo.svg` verwendet
|
||||||
|
CUSTOM_LOGO_MOBILE: Benutzerdefiniertes Logo für Mobilgeräte
|
||||||
|
SLOGAN: Motto
|
||||||
|
BLOG_DEFAULTS: Blog-Optionen
|
||||||
|
BLOG_PAGE: Blog-Seite
|
||||||
|
BLOG_PAGE_HELP: Der Pfad zur Blog-Seite wenn die Blog-Seitenleiste aktiv ist
|
||||||
|
MINIPOSTS: Aktivieren Sie Miniposts in der Seitenleiste
|
||||||
|
MINIPOSTS_NUMBER: Anzahl der anzuzeigenden Miniposts
|
||||||
|
MINIPOSTS_NUMBER_DESCRIPTION: Anzahl der in der Seitenleiste anzuzeigenden Miniposts
|
||||||
|
MINIPOSTS_CATEGORY: Kategorie für Miniposts
|
||||||
|
MINIPOSTS_CATEGORY_DESCRIPTION: Legen Sie einen Namen für die Miniposts-Kategorie fest.<br />`Sie müssen diesen Namen in Optionen->Taxonomie->Kategorie einfügen`
|
||||||
|
FOOTER: Fusszeile
|
||||||
|
FOOTER_TITLE: Fusszeilentitel
|
||||||
|
FOOTER_DESCRIPTION: Fusszeilentext
|
||||||
|
FOOTER_COPYRIGHT: Copyright-Text
|
||||||
|
FOOTER_BUTTON_TEXT: Schaltflächentext
|
||||||
|
FOOTER_BUTTON_URL: Schaltflächen-URL
|
||||||
|
FOOTER_SOCIALS_ICONS: Symbole für soziale Medien
|
||||||
|
FOOTER_SOCIALS_ICON_NAME: Name des sozialen Netzwerks
|
||||||
|
FOOTER_SOCIALS_ICON_URL: URL-Link zum sozialen Netzwerk
|
||||||
|
FOOTER_SOCIALS_ICON_ICON: Symbol des sozialen Netzwerks
|
||||||
|
CUSTOM_MENU_TITLE: 'Benutzerdefinierte Menüpunkte'
|
||||||
|
CUSTOM_MENU_ENABLE: 'Benutzerdefinierte Menüpunkte aktivieren'
|
||||||
|
CUSTOM_MENU_ENABLE_HELP: 'Legt fest, ob definierte benutzerdefinierte Menüeinträge in der Menüleiste angezeigt werden.'
|
||||||
|
CUSTOM_MENU_ITEM_TEXT: 'Text'
|
||||||
|
CUSTOM_MENU_ITEM_TEXT_DESCRIPTION: 'Textbeschriftung für Menüpunkt.'
|
||||||
|
CUSTOM_MENU_ITEM_ICON: 'Symbol'
|
||||||
|
CUSTOM_MENU_ITEM_ICON_DESCRIPTION: 'FontAwesome-Symbol für Menüelement.'
|
||||||
|
CUSTOM_MENU_ITEM_URL: 'URL'
|
||||||
|
CUSTOM_MENU_ITEM_URL_DESCRIPTION: 'URL für Menüpunkt.'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET: 'Ziel'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET_BLANK: 'In neuem Fenster öffnen'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET_PARENT: 'In übergeordnetem Frame öffnen'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET_SELF: 'In selbem Frame öffnen'
|
||||||
|
CUSTOM_MENU_ITEM_TARGET_TOP: 'In vollem Fensterkörper öffnen'
|
||||||
|
DEFAULT:
|
||||||
|
PRIMARY_IMAGE: Hauptbild
|
||||||
|
MODULAR:
|
||||||
|
BANNER:
|
||||||
|
BANNER_TAB: Banner
|
||||||
|
BANNER_SUBTITLE: Bildbeschriftung
|
||||||
|
BANNER_BUTTON_TEXT: Schaltflächentext
|
||||||
|
BANNER_BUTTON_URL: Schaltflächen-URL
|
||||||
|
BANNER_IMAGE: Bild
|
||||||
|
BANNER_IMAGE_DESCRIPTION: Wählen Sie ein Bild aus
|
||||||
|
FEATURES:
|
||||||
|
FEATURES_TAB: Funktionen
|
||||||
|
FEATURES_LAYOUT: Layout
|
||||||
|
FEATURES_LAYOUT_TWOCOLS: Mittel = 2 / 1 Spalten
|
||||||
|
FEATURES_LAYOUT_THREECOLS: Standard = 3 / 2 / 1 Spalten
|
||||||
|
FEATURES_HEADER: Funktionen
|
||||||
|
FEATURES_IMAGE: Bild
|
||||||
|
FEATURES_TITLE: Titel
|
||||||
|
FEATURES_TEXT: Text
|
||||||
|
FEATURES_BUTTON_TEXT: Schaltflächentext
|
||||||
|
FEATURES_BUTTON_URL: Schaltflächen-URL
|
||||||
|
FEATURES_BUTTON_URL_TARGET: Öffnen Sie die URL in einem neuen Fenster
|
||||||
|
|
||||||
|
BLOG:
|
||||||
|
BLOG_TAB: Blog-Einstellungen
|
||||||
|
BLOG_CONTENT_TITLE: Content Definition
|
||||||
|
BLOG_CONTENT_ITEMS: Artikel
|
||||||
|
BLOG_CONTENT_ITEMS_LIMIT: Maximale Artikel-Anzahl
|
||||||
|
BLOG_CONTENT_ITEMS_ORDER_BY: Sortieren nach
|
||||||
|
BLOG_CONTENT_ITEMS_ORDER_BY_DATE: Datum
|
||||||
|
BLOG_CONTENT_ITEMS_ORDER_BY_TITLE: Titel
|
||||||
|
BLOG_CONTENT_ITEMS_ORDER_BY_FOLDER: Verzeichnis
|
||||||
|
BLOG_CONTENT_ITEMS_ORDER_BY_DEFAULT: Standard
|
||||||
|
BLOG_CONTENT_ITEMS_ORDER_DIR: Reihenfolge
|
||||||
|
BLOG_CONTENT_ITEMS_ORDER_DIR_ASC: Aufsteigend
|
||||||
|
BLOG_CONTENT_ITEMS_ORDER_DIR_DESC: Absteigend
|
||||||
|
BLOG_CONTENT_ITEMS_PAGINATION: Seitennummerierung
|
||||||
|
BLOG_CONTENT_ITEMS_URL_TAXONOMY_FILTERS: Taxonomie filtern nach URL
|
||||||
|
ITEM:
|
||||||
|
ITEM_TAB: Blog-Artikel
|
||||||
|
ITEM_OPTIONS: Optionen
|
||||||
|
ITEM_SUMMARY: Artikelzusammenfassung
|
||||||
|
ITEM_SUMMARY_ENABLED: Zusammenfassung aktivieren
|
||||||
|
ITEM_SUMMARY_FORMAT: Zusammenfassungsformat
|
||||||
|
ITEM_SUMMARY_FORMAT_SHORT: Verwenden Sie das erste Vorkommen des Trennzeichens oder der Größe
|
||||||
|
ITEM_SUMMARY_FORMAT_LONG: Zusammenfassungsbegrenzer wird ignoriert
|
||||||
|
ITEM_SUMMARY_SIZE: Größe
|
||||||
|
ITEM_SUMMARY_DELIMITER: Zusammenfassungsbegrenzer
|
||||||
|
ITEM_ORDER: Minipost-Reihenfolge
|
||||||
|
ITEM_SUBTITLE: Untertitel
|
||||||
|
ITEM_AVATAR: Avatar-Bild
|
||||||
|
PORTFOLIO:
|
||||||
|
PORTFOLIO_TAB: Portfolio
|
||||||
|
PORTFOLIO_TITLE: Portfolio-Bild
|
||||||
|
PORTFOLIO_LAYOUT: Layout
|
||||||
|
PORTFOLIO_LAYOUT_TWOCOLS: Mittel = 2 / 1 Spalten
|
||||||
|
PORTOFOLIO_LAYOUT_THREECOLS: Standard = 3 / 2 / 1 Spalten
|
||||||
|
PORTFOLIO_IMAGES: Bilder
|
||||||
|
PORTFOLIO_IMAGE: Bild
|
||||||
|
PORTFOLIO_IMAGE_TITLE: Titel
|
||||||
|
PORTFOLIO_IMAGE_DESCRIPTION: Beschreibung
|
||||||
|
PORTFOLIO_IMAGE_THUMB: Miniaturansicht
|
||||||
|
|
||||||
|
BLOG:
|
||||||
|
ITEM:
|
||||||
|
CONTINUE_READING: Weiterlesen...
|
||||||
|
NEXT_POST: Nächster Eintrag
|
||||||
|
PREV_POST: Vorheriger Eintrag
|
||||||
|
PAGINATION:
|
||||||
|
PREVIOUS: Vorherige
|
||||||
|
NEXT: Nächste
|
||||||
|
|
||||||
|
SIDEBAR:
|
||||||
|
SIMPLE_SEARCH:
|
||||||
|
HEADLINE: Suche
|
||||||
|
RELATED_POSTS:
|
||||||
|
HEADLINE: Verwandte Einträge
|
||||||
|
RANDOM_ARTICLE:
|
||||||
|
HEADLINE: Zufälliger Artikel
|
||||||
|
FEELING_LUCKY: Ich habe Glück!
|
||||||
|
SOME_TEXT_WIDGET:
|
||||||
|
HEADLINE: Ein Text-Widget
|
||||||
|
TAGS:
|
||||||
|
HEADLINE: Schlagworte
|
||||||
|
POPULAR_TAGS:
|
||||||
|
HEADLINE: beliebte Schlagworte
|
||||||
|
ARCHIVES:
|
||||||
|
HEADLINE: Letzte Einträge
|
||||||
|
SYNDICATE:
|
||||||
|
HEADLINE: Verteilen
|
||||||
|
|
||||||
|
LOGIN: Einloggen
|
||||||
|
LATESTPOSTS: Letzte Beiträge
|
||||||
|
FEATURED: Hervorgehoben
|
||||||
|
PRIVACY: Durch die Nutzung dieses Formulars stimmen Sie unseren Bedingungen zu
|
||||||
|
FORM_SUMMARY: Hier ist die Zusammenfassung dessen, was Sie uns geschrieben haben
|
||||||
|
|
||||||
es:
|
es:
|
||||||
FUTURE:
|
FUTURE:
|
||||||
ADMIN:
|
ADMIN:
|
||||||
|
@ -141,7 +297,7 @@ es:
|
||||||
SLOGAN: Slogan
|
SLOGAN: Slogan
|
||||||
BLOG_DEFAULTS: Opciones de Blog
|
BLOG_DEFAULTS: Opciones de Blog
|
||||||
BLOG_PAGE: Página de Blog
|
BLOG_PAGE: Página de Blog
|
||||||
BLOG_PAGE_DESCRIPTION: Ruta de la página de Blog cuando funciona con el blog de barra lateral
|
BLOG_PAGE_HELP: Ruta de la página de Blog cuando funciona con el blog de barra lateral
|
||||||
MINIPOSTS: Activar Miniposts en la barra lateral
|
MINIPOSTS: Activar Miniposts en la barra lateral
|
||||||
MINIPOSTS_NUMBER: Número de miniposts a mostrar
|
MINIPOSTS_NUMBER: Número de miniposts a mostrar
|
||||||
MINIPOSTS_NUMBER_DESCRIPTION: Número de miniposts que se mostrarán en la barra lateral
|
MINIPOSTS_NUMBER_DESCRIPTION: Número de miniposts que se mostrarán en la barra lateral
|
||||||
|
@ -220,7 +376,6 @@ es:
|
||||||
PORTFOLIO_IMAGE_DESCRIPTION: Descripción
|
PORTFOLIO_IMAGE_DESCRIPTION: Descripción
|
||||||
PORTFOLIO_IMAGE_THUMB: Miniatura
|
PORTFOLIO_IMAGE_THUMB: Miniatura
|
||||||
|
|
||||||
|
|
||||||
BLOG:
|
BLOG:
|
||||||
ITEM:
|
ITEM:
|
||||||
CONTINUE_READING: Continuar leyendo...
|
CONTINUE_READING: Continuar leyendo...
|
||||||
|
@ -229,6 +384,7 @@ es:
|
||||||
PAGINATION:
|
PAGINATION:
|
||||||
PREVIOUS: Anterior
|
PREVIOUS: Anterior
|
||||||
NEXT: Siguiente
|
NEXT: Siguiente
|
||||||
|
|
||||||
SIDEBAR:
|
SIDEBAR:
|
||||||
SIMPLE_SEARCH:
|
SIMPLE_SEARCH:
|
||||||
HEADLINE: Buscar
|
HEADLINE: Buscar
|
||||||
|
@ -247,9 +403,10 @@ es:
|
||||||
HEADLINE: Últimas entradas
|
HEADLINE: Últimas entradas
|
||||||
SYNDICATE:
|
SYNDICATE:
|
||||||
HEADLINE: Distribuir
|
HEADLINE: Distribuir
|
||||||
|
|
||||||
LOGIN: Iniciar sesión
|
LOGIN: Iniciar sesión
|
||||||
LATESTPOSTS: Últimos posts
|
LATESTPOSTS: Últimos posts
|
||||||
FEATURED: Destacados
|
FEATURED: Destacados
|
||||||
PRIVACY: Al usar este formulario estás de acuerdo con nuestra
|
PRIVACY: Al usar este formulario estás de acuerdo con nuestra
|
||||||
FORM_SUMMARY: Aquí está el resumen de lo que nos escribió.
|
FORM_SUMMARY: Aquí está el resumen de lo que nos escribió
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
<article class="post" itemprop="liveBlogUpdate" itemscope itemtype="http://schema.org/BlogPosting">
|
<article class="post" itemprop="liveBlogUpdate" itemscope itemtype="http://schema.org/BlogPosting">
|
||||||
{% if page.header.author %}
|
|
||||||
{% set author = page.header.author %}
|
{% if page.header.metadata.author %}
|
||||||
{% else %}
|
{% set author = page.header.metadata.author %}
|
||||||
{% set author = page.header.taxonomy.author[0] %}
|
{% elseif page.header.author %}
|
||||||
{% endif %}
|
{% set author = page.header.author %}
|
||||||
{% if author %}
|
{% else %}
|
||||||
{% set avatar = author|replace(' ', '-')|lower %}
|
{% set author = page.header.taxonomy.author[0] %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author %}
|
||||||
|
{% set avatar = author|replace(' ', '-')|lower %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<div class="title">
|
<div class="title">
|
||||||
|
@ -33,9 +37,9 @@
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
{% if page.header.primaryImage %}
|
{% if page.header.primaryImage %}
|
||||||
<a href="{{ page.url }}" class="image featured">{{ page.media[page.header.primaryImage].cropZoom(1038,437).loading('lazy').html(page.title, page.title, 'image featured')|raw }}</a>
|
<a href="{{ page.url }}">{{ page.media[page.header.primaryImage].cropZoom(1038,437).loading('lazy').html(page.title, page.title, 'image featured')|raw }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ page.url }}" class="image featured">{{ page.media.images|first.cropZoom(1038,437).loading('lazy').html(page.title, page.title, 'image featured')|raw }}</a>
|
<a href="{{ page.url }}">{{ page.media.images|first.cropZoom(1038,437).loading('lazy').html(page.title, page.title, 'image featured')|raw }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
|
@ -89,5 +93,4 @@
|
||||||
</ul>
|
</ul>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
{{ macros.nav_loop(pages) }}
|
{{ macros.nav_loop(pages) }}
|
||||||
|
|
||||||
{% if theme_var('displaycustommenus.enabled') %}
|
{% if theme_var('custommenus.enabled') %}
|
||||||
{% for mitem in theme_var('custommenu') %}
|
{% for mitem in theme_var('custommenu') %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ mitem.url }}" target="{{ mitem.target }}">
|
<a href="{{ mitem.url }}" target="{{ mitem.target }}">
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
<ul class="menulink">
|
<ul class="menulink">
|
||||||
{{ _self.loop(pages) }}
|
{{ _self.loop(pages) }}
|
||||||
{% if theme_var('displaycustommenus.enabled') %}
|
{% if theme_var('custommenus.enabled') %}
|
||||||
{% for mitem in theme_var('menu') %}
|
{% for mitem in theme_var('menu') %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ mitem.url }}" target="{{ mitem.target }}">
|
<a href="{{ mitem.url }}" target="{{ mitem.target }}">
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
{% if config.plugins.login.enabled %}
|
{% if config.plugins.login.enabled %}
|
||||||
<section>
|
<section>
|
||||||
<ul class="actions stacked">
|
<ul class="actions stacked">
|
||||||
<li><a href="#" class="button large fit">{{ 'FUTURE.LOGIN'|t }}</a></li>
|
<li><a href="{{ base_url }}/admin" class="button large fit">{{ 'FUTURE.LOGIN'|t }}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue