template
This commit is contained in:
+41
-2
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\Config\\CompiledBlueprints',
|
||||
'timestamp' => 1527177995,
|
||||
'checksum' => '9252a9d86de84262b6254832bace6620',
|
||||
'timestamp' => 1527251079,
|
||||
'checksum' => '21668c07f0541dde70186be4519c69eb',
|
||||
'files' => [
|
||||
'user/plugins/admin/blueprints/config' => [
|
||||
'media' => [
|
||||
@@ -53,6 +53,10 @@ return [
|
||||
'file' => 'user/plugins/email/blueprints.yaml',
|
||||
'modified' => 1526367498
|
||||
],
|
||||
'plugins/taxonomylist' => [
|
||||
'file' => 'user/plugins/taxonomylist/blueprints.yaml',
|
||||
'modified' => 1527251032
|
||||
],
|
||||
'plugins/youtube' => [
|
||||
'file' => 'user/plugins/youtube/blueprints.yaml',
|
||||
'modified' => 1527105680
|
||||
@@ -3292,6 +3296,37 @@ return [
|
||||
'name' => 'plugins.email.debug',
|
||||
'validation' => 'loose'
|
||||
],
|
||||
'plugins.taxonomylist' => [
|
||||
'type' => '_root',
|
||||
'form_field' => false,
|
||||
'form' => [
|
||||
'validation' => 'strict'
|
||||
]
|
||||
],
|
||||
'plugins.taxonomylist.enabled' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Plugin status',
|
||||
'highlight' => 1,
|
||||
'default' => 0,
|
||||
'options' => [
|
||||
1 => 'Enabled',
|
||||
0 => 'Disabled'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
],
|
||||
'name' => 'plugins.taxonomylist.enabled',
|
||||
'validation' => 'strict'
|
||||
],
|
||||
'plugins.taxonomylist.route' => [
|
||||
'type' => 'text',
|
||||
'label' => 'Route to blog',
|
||||
'validate' => [
|
||||
'pattern' => '/([a-z\\-_]+/?)+'
|
||||
],
|
||||
'name' => 'plugins.taxonomylist.route',
|
||||
'validation' => 'strict'
|
||||
],
|
||||
'plugins.youtube' => [
|
||||
'type' => '_root',
|
||||
'form_field' => false,
|
||||
@@ -4077,6 +4112,10 @@ return [
|
||||
'body' => 'plugins.email.body',
|
||||
'debug' => 'plugins.email.debug'
|
||||
],
|
||||
'taxonomylist' => [
|
||||
'enabled' => 'plugins.taxonomylist.enabled',
|
||||
'route' => 'plugins.taxonomylist.route'
|
||||
],
|
||||
'youtube' => [
|
||||
'enabled' => 'plugins.youtube.enabled',
|
||||
'built_in_css' => 'plugins.youtube.built_in_css',
|
||||
|
||||
+12
-4
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\Config\\CompiledConfig',
|
||||
'timestamp' => 1527177848,
|
||||
'checksum' => 'f0ac567fbf8cb9d8dd0dc11d82570ddc',
|
||||
'timestamp' => 1527502798,
|
||||
'checksum' => 'c5e64aaaa7cb36dfca003bad5ef2d530',
|
||||
'files' => [
|
||||
'user/config' => [
|
||||
'media' => [
|
||||
@@ -27,7 +27,7 @@ return [
|
||||
],
|
||||
'system' => [
|
||||
'file' => 'user/config/system.yaml',
|
||||
'modified' => 1527093463
|
||||
'modified' => 1527502798
|
||||
]
|
||||
],
|
||||
'system/config' => [
|
||||
@@ -73,6 +73,10 @@ return [
|
||||
'file' => 'user/plugins/email/email.yaml',
|
||||
'modified' => 1526367498
|
||||
],
|
||||
'plugins/taxonomylist' => [
|
||||
'file' => 'user/plugins/taxonomylist/taxonomylist.yaml',
|
||||
'modified' => 1527251032
|
||||
],
|
||||
'plugins/youtube' => [
|
||||
'file' => 'user/plugins/youtube/youtube.yaml',
|
||||
'modified' => 1527105680
|
||||
@@ -259,6 +263,10 @@ return [
|
||||
'content_type' => 'text/html',
|
||||
'debug' => false
|
||||
],
|
||||
'taxonomylist' => [
|
||||
'enabled' => true,
|
||||
'route' => '/blog'
|
||||
],
|
||||
'youtube' => [
|
||||
'enabled' => true,
|
||||
'built_in_css' => true,
|
||||
@@ -641,7 +649,7 @@ return [
|
||||
'hide_in_urls' => false
|
||||
],
|
||||
'pages' => [
|
||||
'theme' => 'quark',
|
||||
'theme' => 'anissabensalah',
|
||||
'order' => [
|
||||
'by' => 'default',
|
||||
'dir' => 'asc'
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
||||
'filename' => 'themes://anissabensalah/anissabensalah.yaml',
|
||||
'modified' => 1527502649,
|
||||
'data' => [
|
||||
'enabled' => true,
|
||||
'production-mode' => true,
|
||||
'grid-size' => 'grid-lg',
|
||||
'header-fixed' => true,
|
||||
'header-animated' => true,
|
||||
'header-dark' => false,
|
||||
'header-transparent' => false,
|
||||
'sticky-footer' => true,
|
||||
'blog-page' => '/blog',
|
||||
'spectre' => [
|
||||
'exp' => false,
|
||||
'icons' => false
|
||||
]
|
||||
]
|
||||
];
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
||||
'filename' => '/mnt/data/Sites/anissabensalah.net/user/plugins/taxonomylist/taxonomylist.yaml',
|
||||
'modified' => 1527251032,
|
||||
'data' => [
|
||||
'enabled' => true,
|
||||
'route' => '/blog'
|
||||
]
|
||||
];
|
||||
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
||||
'filename' => '/mnt/data/Sites/anissabensalah.net/user/themes/quark/blueprints/blog.yaml',
|
||||
'modified' => 1526367498,
|
||||
'data' => [
|
||||
'extends@' => 'default',
|
||||
'child_type' => 'item',
|
||||
'rules' => [
|
||||
'slug' => [
|
||||
'pattern' => '[a-z][a-z0-9_\\-]+',
|
||||
'min' => 2,
|
||||
'max' => 80
|
||||
]
|
||||
],
|
||||
'form' => [
|
||||
'fields' => [
|
||||
'tabs' => [
|
||||
'type' => 'tabs',
|
||||
'active' => 1,
|
||||
'fields' => [
|
||||
'advanced' => [
|
||||
'fields' => [
|
||||
'overrides' => [
|
||||
'fields' => [
|
||||
'header.child_type' => [
|
||||
'default' => 'item'
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
'blog' => [
|
||||
'type' => 'tab',
|
||||
'title' => 'Blog Config',
|
||||
'fields' => [
|
||||
'content_title' => [
|
||||
'type' => 'spacer',
|
||||
'title' => 'Content Definition'
|
||||
],
|
||||
'header.content.items' => [
|
||||
'type' => 'textarea',
|
||||
'yaml' => true,
|
||||
'label' => 'Items',
|
||||
'default' => '@self.children',
|
||||
'validate' => [
|
||||
'type' => 'yaml'
|
||||
]
|
||||
],
|
||||
'header.content.limit' => [
|
||||
'type' => 'text',
|
||||
'label' => 'Max Item Count',
|
||||
'default' => 5,
|
||||
'validate' => [
|
||||
'required' => true,
|
||||
'type' => 'int',
|
||||
'min' => 1
|
||||
]
|
||||
],
|
||||
'header.content.order.by' => [
|
||||
'type' => 'select',
|
||||
'label' => 'Order By',
|
||||
'default' => 'date',
|
||||
'options' => [
|
||||
'folder' => 'Folder',
|
||||
'title' => 'Title',
|
||||
'date' => 'Date',
|
||||
'default' => 'Default'
|
||||
]
|
||||
],
|
||||
'header.content.order.dir' => [
|
||||
'type' => 'select',
|
||||
'label' => 'Order',
|
||||
'default' => 'desc',
|
||||
'options' => [
|
||||
'asc' => 'Ascending',
|
||||
'desc' => 'Descending'
|
||||
]
|
||||
],
|
||||
'header.content.pagination' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Pagination',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'header.content.url_taxonomy_filters' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'URL Taxonomy Filters',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
]
|
||||
],
|
||||
'import@' => [
|
||||
'type' => 'partials/blog-bits',
|
||||
'context' => 'blueprints://pages'
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
];
|
||||
@@ -0,0 +1,370 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
||||
'filename' => '/mnt/data/Sites/anissabensalah.net/user/themes/anissabensalah/languages.yaml',
|
||||
'modified' => 1527502649,
|
||||
'data' => [
|
||||
'en' => [
|
||||
'TRANSLATION_TEST' => 'Quark!',
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Continue reading...',
|
||||
'NEXT_POST' => 'Next Post',
|
||||
'PREV_POST' => 'Previous Post'
|
||||
]
|
||||
],
|
||||
'SHOP' => [
|
||||
'ITEM' => [
|
||||
'BACK' => 'Back',
|
||||
'NEXT_ITEM' => 'Next Item',
|
||||
'PREV_ITEM' => 'Previous Item'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'Search'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Related Posts'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Random Article',
|
||||
'FEELING_LUCKY' => 'I\'m Feeling Lucky!'
|
||||
],
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Some Text Widget'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Popular Tags'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Archives'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Syndicate'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Here is the summary of what you wrote to us:'
|
||||
],
|
||||
'ERROR' => 'Error'
|
||||
],
|
||||
'de' => [
|
||||
'TRANSLATION_TEST' => 'Quark!',
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Weiterlesen...',
|
||||
'NEXT_POST' => 'Nächster Beitrag',
|
||||
'PREV_POST' => 'Vorheriger Beitrag'
|
||||
]
|
||||
],
|
||||
'SHOP' => [
|
||||
'ITEM' => [
|
||||
'BACK' => 'Zurück',
|
||||
'NEXT_ITEM' => 'Nächstes Objekt',
|
||||
'PREV_ITEM' => 'Vorheriger Objekt'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'SimpleSearch'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Ähnliche Beiträge'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Zufälliger Artikel',
|
||||
'FEELING_LUCKY' => 'Auf gut Glück!'
|
||||
],
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Text Widget Beispiel'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Häufigste Tags'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Archiv'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Abonnements'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Folgendes haben Sie uns mitgeteilt:'
|
||||
],
|
||||
'ERROR' => 'Fehler'
|
||||
],
|
||||
'es' => [
|
||||
'TRANSLATION_TEST' => 'Quark!',
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Continuar leyendo...',
|
||||
'NEXT_POST' => 'Siguiente Entrada',
|
||||
'PREV_POST' => 'Entrada Anterior'
|
||||
]
|
||||
],
|
||||
'SHOP' => [
|
||||
'ITEM' => [
|
||||
'BACK' => 'Espalda',
|
||||
'NEXT_ITEM' => 'Siguiente Artículo',
|
||||
'PREV_ITEM' => 'Artículo Anterior'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'Buscar'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Entradas Relacionadas'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Artículo Aleatorio',
|
||||
'FEELING_LUCKY' => 'Voy a tener suerte!'
|
||||
],
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Algunos Widget de Texto'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Etiquetas Populares'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Archivos'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Distribuir'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Este es un resumen de lo escrito:'
|
||||
],
|
||||
'ERROR' => 'Error'
|
||||
],
|
||||
'fr' => [
|
||||
'TRANSLATION_TEST' => 'Quark !',
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Continuer la lecture...',
|
||||
'NEXT_POST' => 'Article suivant',
|
||||
'PREV_POST' => 'Article précédent'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'Recherche simple'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Articles en relation'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Article aléatoire',
|
||||
'FEELING_LUCKY' => 'J\'ai de la chance !'
|
||||
],
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Du texte gadget'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Tags populaires'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Archives'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Syndication'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Voici le résumé de ce que vous avez écrit pour nous:'
|
||||
],
|
||||
'ERROR' => 'Erreur'
|
||||
],
|
||||
'it' => [
|
||||
'TRANSLATION_TEST' => 'Quark!',
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Continua a leggere...',
|
||||
'NEXT_POST' => 'Prossimo articolo',
|
||||
'PREV_POST' => 'Articolo precedente'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'SimpleSearch'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Articoli correlati'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Articolo a caso',
|
||||
'FEELING_LUCKY' => 'Mi sento fortunato!'
|
||||
],
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Widget di testo'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Tag popolari'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Archivio'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Feed'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Questo è il riassunto di quanto ci hai scritto:'
|
||||
],
|
||||
'ERROR' => 'Errore'
|
||||
],
|
||||
'ro' => [
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Mai multe...',
|
||||
'NEXT_POST' => 'Următorul articol',
|
||||
'PREV_POST' => 'Articolul anterior'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'Căutare'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Articole corelate'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Articol aleator'
|
||||
],
|
||||
'FEELING_LUCKY' => 'Mă simt norocos',
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Text modular'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Etichete populare'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Arhive'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Abonați-vă'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Acesta este rezumatul mesajului Dvs:'
|
||||
],
|
||||
'ERROR' => 'Eroare'
|
||||
],
|
||||
'ru' => [
|
||||
'TRANSLATION_TEST' => 'Quark!',
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Читать далее...',
|
||||
'NEXT_POST' => 'Следующая запись',
|
||||
'PREV_POST' => 'Предыдущая запись'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'Поиск'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Также читайте'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Случайная запись',
|
||||
'FEELING_LUCKY' => 'Мне повезёт!'
|
||||
],
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Текстовой виджет'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Популярные теги'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Архив'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Синдикация'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Вы написали нам:'
|
||||
],
|
||||
'ERROR' => 'Ошибка'
|
||||
],
|
||||
'uk' => [
|
||||
'TRANSLATION_TEST' => 'Quark!',
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Читати далі...',
|
||||
'NEXT_POST' => 'Наступний запис',
|
||||
'PREV_POST' => 'Попередній запис'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'Пошук'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Також читайте'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Випадковий запис',
|
||||
'FEELING_LUCKY' => 'Мені пощастить!'
|
||||
],
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Текстовий віджет'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Популярні теги'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Архів'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Синдикація'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Ви написали нам:'
|
||||
],
|
||||
'ERROR' => 'Помилка'
|
||||
],
|
||||
'hr' => [
|
||||
'TRANSLATION_TEST' => 'Quark!',
|
||||
'BLOG' => [
|
||||
'ITEM' => [
|
||||
'CONTINUE_READING' => 'Nastavi s čitanjem...',
|
||||
'NEXT_POST' => 'Slijedeća objava',
|
||||
'PREV_POST' => 'Prethodna objava'
|
||||
]
|
||||
],
|
||||
'SIDEBAR' => [
|
||||
'SIMPLE_SEARCH' => [
|
||||
'HEADLINE' => 'Pretraživanje'
|
||||
],
|
||||
'RELATED_POSTS' => [
|
||||
'HEADLINE' => 'Povezane objave'
|
||||
],
|
||||
'RANDOM_ARTICLE' => [
|
||||
'HEADLINE' => 'Slučajni članak',
|
||||
'FEELING_LUCKY' => 'Osjećam se sretno!'
|
||||
],
|
||||
'SOME_TEXT_WIDGET' => [
|
||||
'HEADLINE' => 'Neki tekst widget'
|
||||
],
|
||||
'POPULAR_TAGS' => [
|
||||
'HEADLINE' => 'Popularni tagovi'
|
||||
],
|
||||
'ARCHIVES' => [
|
||||
'HEADLINE' => 'Arhiva'
|
||||
],
|
||||
'SYNDICATE' => [
|
||||
'HEADLINE' => 'Kanali'
|
||||
]
|
||||
],
|
||||
'FORM_DATA' => [
|
||||
'SUMMARY' => 'Ovo je sažetak onog što ste nam napisali:'
|
||||
],
|
||||
'ERROR' => 'Greška'
|
||||
]
|
||||
]
|
||||
];
|
||||
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
||||
'filename' => '/mnt/data/Sites/anissabensalah.net/user/plugins/taxonomylist/blueprints.yaml',
|
||||
'modified' => 1527251032,
|
||||
'data' => [
|
||||
'name' => 'Taxonomy List',
|
||||
'version' => '1.3.2',
|
||||
'description' => 'With the **TaxonomyList plugin** you can easily create list of **taxonomy** items such as **tags**, **categories**, etc.',
|
||||
'icon' => 'tag',
|
||||
'author' => [
|
||||
'name' => 'Team Grav',
|
||||
'email' => 'devs@getgrav.org',
|
||||
'url' => 'http://getgrav.org'
|
||||
],
|
||||
'homepage' => 'https://github.com/getgrav/grav-plugin-taxonomylist',
|
||||
'demo' => 'http://demo.getgrav.org/blog-skeleton',
|
||||
'keywords' => 'taxonomylist, plugin, taxonomy, list, tags, categories',
|
||||
'bugs' => 'https://github.com/getgrav/grav-plugin-taxonomylist/issues',
|
||||
'license' => 'MIT',
|
||||
'form' => [
|
||||
'validation' => 'strict',
|
||||
'fields' => [
|
||||
'enabled' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Plugin status',
|
||||
'highlight' => 1,
|
||||
'default' => 0,
|
||||
'options' => [
|
||||
1 => 'Enabled',
|
||||
0 => 'Disabled'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'route' => [
|
||||
'type' => 'text',
|
||||
'label' => 'Route to blog',
|
||||
'placeholder' => '/blog',
|
||||
'validate' => [
|
||||
'pattern' => '/([a-z\\-_]+/?)+'
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
];
|
||||
@@ -0,0 +1,184 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
||||
'filename' => '/mnt/data/Sites/anissabensalah.net/user/themes/anissabensalah/blueprints.yaml',
|
||||
'modified' => 1527502784,
|
||||
'data' => [
|
||||
'name' => 'anissabensalah',
|
||||
'version' => 1,
|
||||
'description' => 'Theme du site anissabensalah.fr developpé par Kévin Tessier (figureslibres)',
|
||||
'icon' => 'microchip',
|
||||
'author' => [
|
||||
'name' => 'Kevin tessier',
|
||||
'email' => 'kevin@figureslibres.io',
|
||||
'url' => 'http://kevintessier.net'
|
||||
],
|
||||
'homepage' => 'https://github.com/getgrav/grav-theme-quark',
|
||||
'demo' => 'https://demo.getgrav.org/onepage-skeleton',
|
||||
'keywords' => 'anissabensalah, musique, theme, core, modern, fast, responsive, html5, css3',
|
||||
'bugs' => 'https://github.com/getgrav/grav-theme-quark/issues',
|
||||
'license' => 'MIT',
|
||||
'dependencies' => [
|
||||
0 => [
|
||||
'name' => 'grav',
|
||||
'version' => '>=1.4.0-rc.1'
|
||||
]
|
||||
],
|
||||
'form' => [
|
||||
'validation' => 'loose',
|
||||
'fields' => [
|
||||
'production-mode' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Production mode',
|
||||
'help' => 'When enabled, Quark will render with minified CSS',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'grid-size' => [
|
||||
'type' => 'select',
|
||||
'label' => 'Grid size',
|
||||
'help' => 'The maximum width of the theme',
|
||||
'size' => 'small',
|
||||
'options' => [
|
||||
'' => 'None (full width)',
|
||||
'grid-xl' => 'Extra Large',
|
||||
'grid-lg' => 'Large',
|
||||
'grid-md' => 'Medium'
|
||||
]
|
||||
],
|
||||
'header_section' => [
|
||||
'type' => 'section',
|
||||
'title' => 'Header Defaults',
|
||||
'underline' => true
|
||||
],
|
||||
'header-fixed' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Fixed header',
|
||||
'help' => 'When enabled, the header will be fixed at the top of the browser',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'header-animated' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Animated',
|
||||
'help' => 'When enabled, the header will animate to a smaller header when scrolling',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'header-dark' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Dark Style',
|
||||
'help' => 'When enabled, a dark-friendly style will be used',
|
||||
'highlight' => 0,
|
||||
'default' => 0,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'header-transparent' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Transparent',
|
||||
'help' => 'When enabled, a transparent style will be used',
|
||||
'highlight' => 0,
|
||||
'default' => 0,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'footer_section' => [
|
||||
'type' => 'section',
|
||||
'title' => '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',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'blog_section' => [
|
||||
'type' => 'section',
|
||||
'title' => 'Blog Defaults',
|
||||
'underline' => true
|
||||
],
|
||||
'blog-page' => [
|
||||
'type' => 'text',
|
||||
'label' => 'Blog Page',
|
||||
'help' => 'The route to the blog page when working with blog sidebar',
|
||||
'size' => 'medium',
|
||||
'default' => '/blog'
|
||||
],
|
||||
'spectre_section' => [
|
||||
'type' => 'section',
|
||||
'title' => 'Spectre.css Options',
|
||||
'underline' => true
|
||||
],
|
||||
'spectre.exp' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Experimentals CSS',
|
||||
'help' => 'When enabled, the `spectre-exp.css` file will be included',
|
||||
'highlight' => 0,
|
||||
'default' => 0,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'spectre.icons' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Icons CSS',
|
||||
'help' => 'When enabled, the `spectre-icons.css` file will be included',
|
||||
'highlight' => 0,
|
||||
'default' => 0,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
];
|
||||
@@ -0,0 +1,79 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
||||
'filename' => '/mnt/data/Sites/anissabensalah.net/user/themes/quark/blueprints/partials/blog-bits.yaml',
|
||||
'modified' => 1526367498,
|
||||
'data' => [
|
||||
'form' => [
|
||||
'fields' => [
|
||||
'hero_title' => [
|
||||
'type' => 'spacer',
|
||||
'title' => 'Hero Section'
|
||||
],
|
||||
'header.hero_classes' => [
|
||||
'type' => 'text',
|
||||
'label' => 'Hero Classes',
|
||||
'markdown' => true,
|
||||
'description' => 'There are several Hero class options that can be listed here (space separated):<br />`text-light`, `text-dark`, `title-h1h2`, `parallax`, `overlay-dark-gradient`, `overlay-light-gradient`, `overlay-dark`, `overlay-light`, `hero-fullscreen`, `hero-large`, `hero-medium`, `hero-small`, `hero-tiny`<br />Please consult the [Quark documentation](https://github.com/getgrav/grav-theme-quark#hero-options) for more details.'
|
||||
],
|
||||
'header.hero_image' => [
|
||||
'type' => 'filepicker',
|
||||
'label' => 'Hero Image',
|
||||
'preview_images' => true,
|
||||
'description' => 'If not specified, this defaults to the first image found in the page\'s folder'
|
||||
],
|
||||
'toggles_title' => [
|
||||
'type' => 'spacer',
|
||||
'title' => 'Configuration'
|
||||
],
|
||||
'header.blog_url' => [
|
||||
'type' => 'text',
|
||||
'label' => 'Blog Route',
|
||||
'help' => 'The route to this main blog page that contains this configuration',
|
||||
'default' => '/blog',
|
||||
'placeholder' => '/blog',
|
||||
'size' => 'medium'
|
||||
],
|
||||
'header.show_sidebar' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Show Sidebar',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'header.show_breadcrumbs' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Show Breadcrumbs',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
],
|
||||
'header.show_pagination' => [
|
||||
'type' => 'toggle',
|
||||
'label' => 'Show Pagination',
|
||||
'highlight' => 1,
|
||||
'default' => 1,
|
||||
'options' => [
|
||||
1 => 'PLUGIN_ADMIN.ENABLED',
|
||||
0 => 'PLUGIN_ADMIN.DISABLED'
|
||||
],
|
||||
'validate' => [
|
||||
'type' => 'bool'
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
]
|
||||
];
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
return [
|
||||
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
|
||||
'filename' => 'plugins://taxonomylist/taxonomylist.yaml',
|
||||
'modified' => 1527251032,
|
||||
'data' => [
|
||||
'enabled' => true,
|
||||
'route' => '/blog'
|
||||
]
|
||||
];
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user