mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-01-18 02:40:24 +00:00
parent
619e8846d4
commit
27d11a1c72
2 changed files with 417 additions and 33 deletions
|
@ -45,7 +45,8 @@
|
|||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent"
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
|
@ -100,7 +101,8 @@
|
|||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent"
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
|
@ -167,7 +169,8 @@
|
|||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent"
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
|
@ -264,6 +267,23 @@
|
|||
"name": "content",
|
||||
"title": "Text",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "title",
|
||||
"title": "Titel",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"choices": [
|
||||
"",
|
||||
"false",
|
||||
"true"
|
||||
],
|
||||
"default": "",
|
||||
"name": "open",
|
||||
"title": "Textblock initial ausklappen",
|
||||
"type": "choice"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -405,7 +425,8 @@
|
|||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent"
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
|
@ -426,7 +447,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"Siteparam": {
|
||||
"Site Param": {
|
||||
"body": [
|
||||
"{{< siteparam [[&name]] >}}"
|
||||
],
|
||||
|
@ -452,13 +473,70 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"Tab": {
|
||||
"body": [
|
||||
"{{% tab title=\"[[&title]]\" style=\"[[&style]]\" color=\"[[&color]]\" icon=\"[[&icon]]\" %}}",
|
||||
"[[&content]]",
|
||||
"{{% /tab %}}"
|
||||
],
|
||||
"description": "Zeigt einen einzelnen Tab an",
|
||||
"fields": [
|
||||
{
|
||||
"default": "FM_SELECTED_TEXT",
|
||||
"name": "content",
|
||||
"title": "Text",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "title",
|
||||
"title": "Titel",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"choices": [
|
||||
"",
|
||||
"info",
|
||||
"note",
|
||||
"tip",
|
||||
"warning",
|
||||
"primary",
|
||||
"secondary",
|
||||
"accent",
|
||||
"blue",
|
||||
"green",
|
||||
"gray",
|
||||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
"title": "Stil-Schema",
|
||||
"type": "choice"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "color",
|
||||
"title": "CSS-Farbwert",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "icon",
|
||||
"title": "Font Awesome Icon",
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"Tabs": {
|
||||
"body": [
|
||||
"{{< tabs groupid=\"[[&groupid]]\" >}}",
|
||||
"{{% tab name=\"[[&name1]]\" %}}",
|
||||
"{{< tabs title=\"[[&title]]\" style=\"[[&style]]\" color=\"[[&color]]\" icon=\"[[&icon]]\" groupid=\"[[&groupid]]\" >}}",
|
||||
"{{% tab title=\"[[&title1]]\" style=\"[[&style1]]\" color=\"[[&color1]]\" icon=\"[[&icon1]]\" %}}",
|
||||
"[[&content1]]",
|
||||
"{{% /tab %}}",
|
||||
"{{% tab name=\"[[&name2]]\" %}}",
|
||||
"{{% tab title=\"[[&title2]]\" style=\"[[&style2]]\" color=\"[[&color2]]\" icon=\"[[&icon2]]\" %}}",
|
||||
"[[&content2]]",
|
||||
"{{% /tab %}}",
|
||||
"{{< /tabs >}}"
|
||||
|
@ -467,13 +545,50 @@
|
|||
"fields": [
|
||||
{
|
||||
"default": "",
|
||||
"name": "groupid",
|
||||
"title": "ID, die zum synchronisieren der Tabauswahl über mehrere Tabs Snippets benutzt werden soll",
|
||||
"name": "title",
|
||||
"title": "Titel der Tabgruppe",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "name1",
|
||||
"title": "Titel des ersten Tabs",
|
||||
"choices": [
|
||||
"",
|
||||
"info",
|
||||
"note",
|
||||
"tip",
|
||||
"warning",
|
||||
"primary",
|
||||
"secondary",
|
||||
"accent",
|
||||
"blue",
|
||||
"green",
|
||||
"gray",
|
||||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
"title": "Standard-Stil-Schema aller Tabs",
|
||||
"type": "choice"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "color",
|
||||
"title": "Standard-CSS-Farbwert aller Tabs",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "icon",
|
||||
"title": "Font Awesome Icon der Tabgruppe",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "groupid",
|
||||
"title": "ID, die zum synchronisieren der Tabauswahl über mehrere Tabgruppen hinweg benutzt werden soll",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
|
@ -483,8 +598,44 @@
|
|||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "name2",
|
||||
"title": "Titel des zweiten Tabs",
|
||||
"name": "title1",
|
||||
"title": "Titel des ersten Tabs",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"choices": [
|
||||
"",
|
||||
"info",
|
||||
"note",
|
||||
"tip",
|
||||
"warning",
|
||||
"primary",
|
||||
"secondary",
|
||||
"accent",
|
||||
"blue",
|
||||
"green",
|
||||
"gray",
|
||||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style1",
|
||||
"title": "Stil-Schema des ersten Tabs",
|
||||
"type": "choice"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "color1",
|
||||
"title": "CSS-Farbwert des ersten Tabs",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "icon1",
|
||||
"title": "Font Awesome Icon des ersten Tabs",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
|
@ -492,6 +643,47 @@
|
|||
"name": "content2",
|
||||
"title": "Text des zweiten Tabs",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "title2",
|
||||
"title": "Titel des zweiten Tabs",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"choices": [
|
||||
"",
|
||||
"info",
|
||||
"note",
|
||||
"tip",
|
||||
"warning",
|
||||
"primary",
|
||||
"secondary",
|
||||
"accent",
|
||||
"blue",
|
||||
"green",
|
||||
"gray",
|
||||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style2",
|
||||
"title": "Stil-Schema des zweiten Tabs",
|
||||
"type": "choice"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "color2",
|
||||
"title": "CSS-Farbwert des zweiten Tabs",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "icon2",
|
||||
"title": "Font Awesome Icon des zweiten Tabs",
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -45,7 +45,8 @@
|
|||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent"
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
|
@ -100,7 +101,8 @@
|
|||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent"
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
|
@ -167,7 +169,8 @@
|
|||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent"
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
|
@ -264,6 +267,23 @@
|
|||
"name": "content",
|
||||
"title": "Text",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "title",
|
||||
"title": "Title",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"choices": [
|
||||
"",
|
||||
"false",
|
||||
"true"
|
||||
],
|
||||
"default": "",
|
||||
"name": "open",
|
||||
"title": "Initially expand section",
|
||||
"type": "choice"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -405,7 +425,8 @@
|
|||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent"
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
|
@ -426,7 +447,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"Siteparam": {
|
||||
"Site Param": {
|
||||
"body": [
|
||||
"{{< siteparam [[&name]] >}}"
|
||||
],
|
||||
|
@ -439,9 +460,9 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"Swagger": {
|
||||
"OpenAPI": {
|
||||
"body": [
|
||||
"{{< swagger src=\"[[&src]]\" >}}"
|
||||
"{{< openapi src=\"[[&src]]\" >}}"
|
||||
],
|
||||
"description": "Displays a OpenAPI / Swagger specification",
|
||||
"fields": [
|
||||
|
@ -452,45 +473,216 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"Tab": {
|
||||
"body": [
|
||||
"{{% tab title=\"[[&title]]\" style=\"[[&style]]\" color=\"[[&color]]\" icon=\"[[&icon]]\" %}}",
|
||||
"[[&content]]",
|
||||
"{{% /tab %}}"
|
||||
],
|
||||
"description": "Display a single tab",
|
||||
"fields": [
|
||||
{
|
||||
"default": "FM_SELECTED_TEXT",
|
||||
"name": "content",
|
||||
"title": "Text",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "title",
|
||||
"title": "Titel",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"choices": [
|
||||
"",
|
||||
"info",
|
||||
"note",
|
||||
"tip",
|
||||
"warning",
|
||||
"primary",
|
||||
"secondary",
|
||||
"accent",
|
||||
"blue",
|
||||
"green",
|
||||
"gray",
|
||||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
"title": "Style scheme",
|
||||
"type": "choice"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "color",
|
||||
"title": "CSS color value",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "icon",
|
||||
"title": "Font Awesome icon",
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"Tabs": {
|
||||
"body": [
|
||||
"{{< tabs groupid=\"[[&groupid]]\" >}}",
|
||||
"{{% tab name=\"[[&name1]]\" %}}",
|
||||
"{{< tabs title=\"[[&title]]\" style=\"[[&style]]\" color=\"[[&color]]\" icon=\"[[&icon]]\" groupid=\"[[&groupid]]\" >}}",
|
||||
"{{% tab title=\"[[&title1]]\" style=\"[[&style1]]\" color=\"[[&color1]]\" icon=\"[[&icon1]]\" %}}",
|
||||
"[[&content1]]",
|
||||
"{{% /tab %}}",
|
||||
"{{% tab name=\"[[&name2]]\" %}}",
|
||||
"{{% tab title=\"[[&title2]]\" style=\"[[&style2]]\" color=\"[[&color2]]\" icon=\"[[&icon2]]\" %}}",
|
||||
"[[&content2]]",
|
||||
"{{% /tab %}}",
|
||||
"{{< /tabs >}}"
|
||||
],
|
||||
"description": "Display a set of tabs",
|
||||
"description": "Display a set of tabs in a tab view",
|
||||
"fields": [
|
||||
{
|
||||
"default": "",
|
||||
"name": "groupid",
|
||||
"title": "ID to synchronize the tab selection of multiple Tabs snippets",
|
||||
"name": "title",
|
||||
"title": "Title of the tab view",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "name1",
|
||||
"title": "Title of the first tab",
|
||||
"choices": [
|
||||
"",
|
||||
"info",
|
||||
"note",
|
||||
"tip",
|
||||
"warning",
|
||||
"primary",
|
||||
"secondary",
|
||||
"accent",
|
||||
"blue",
|
||||
"green",
|
||||
"gray",
|
||||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style",
|
||||
"title": "Default style scheme of all tabs",
|
||||
"type": "choice"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "color",
|
||||
"title": "Default CSS color value of all tabs",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "icon",
|
||||
"title": "Font Awesome icon of the tab view",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "groupid",
|
||||
"title": "ID to synchronize the tab selection of multiple Tab snippets",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "FM_SELECTED_TEXT",
|
||||
"name": "content1",
|
||||
"title": "Text for the first tab",
|
||||
"title": "Text of the first tab",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "name2",
|
||||
"title": "Title of the second tab",
|
||||
"name": "title1",
|
||||
"title": "Title of the first tab",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"choices": [
|
||||
"",
|
||||
"info",
|
||||
"note",
|
||||
"tip",
|
||||
"warning",
|
||||
"primary",
|
||||
"secondary",
|
||||
"accent",
|
||||
"blue",
|
||||
"green",
|
||||
"gray",
|
||||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style1",
|
||||
"title": "Style scheme of the first tab",
|
||||
"type": "choice"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "color1",
|
||||
"title": "CSS color value of the first tab",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "icon1",
|
||||
"title": "Font Awesome icon of the first tab",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "content2",
|
||||
"title": "Text for the second tab",
|
||||
"title": "Text of the second tab",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"name": "title2",
|
||||
"title": "Title of the second tab",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"choices": [
|
||||
"",
|
||||
"info",
|
||||
"note",
|
||||
"tip",
|
||||
"warning",
|
||||
"primary",
|
||||
"secondary",
|
||||
"accent",
|
||||
"blue",
|
||||
"green",
|
||||
"gray",
|
||||
"orange",
|
||||
"red",
|
||||
"default",
|
||||
"transparent",
|
||||
"code"
|
||||
],
|
||||
"default": "",
|
||||
"name": "style2",
|
||||
"title": "Style scheme of the second tab",
|
||||
"type": "choice"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "color2",
|
||||
"title": "CSS color value of the second tab",
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"default": "",
|
||||
"name": "icon2",
|
||||
"title": "Font Awesome icon of the second tab",
|
||||
"type": "string"
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue