@leuffen/themejs1 8.2.50 → 8.2.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ version: 1.0
2
+
3
+ environments:
4
+ coder:
5
+ files:
6
+ - name: "project files"
7
+ include:
8
+ - "./docs/**/*.(md|yml|yaml)"
9
+ instructions: |
10
+ These are all project files. You can edit them as you like.
11
+ - name: "context"
12
+ include:
13
+ - "./shiller-context.txt"
14
+ instructions: |
15
+ This file contains all information about the project. Take names, profession etc. from this file.
16
+ - name: "editor instructions"
17
+ include:
18
+ - "./node_modules/@leuffen/themejs1/edit_instructions.txt"
19
+ instructions: |
20
+ This file contains information about how to edit markdown or yaml. files. Befolge die Anweisungen
21
+ in dieser Datei.
@@ -0,0 +1,45 @@
1
+ # Edit Instructions
2
+
3
+ Diese Datei beschreibt, wie das Website Projekt aufgebaut ist. Das Projekt basiert auf jekyll.
4
+ Daten wie Anschrift, Telefonnummern etc. sowie Öffnungs und Urlaubszeiten sind in den YAML Dateien unter _data/ gespeichert.
5
+ Es sollten nach möglichkeit keine dieser Daten direkt in den .md Dateien vorkommen. (falls doch- bitte stehen lassen)
6
+
7
+ ## Daten in den .md Dateien
8
+
9
+ Wir verwenden für das Styling das sog. Jodastyle Javascript Framework. Dieses strukturiert die .md dateien in eine
10
+ Baumstruktur anhand der H1,H2,H3,H4,H5,H6 Tags. Über einen layout="" Tag kann das Layout gesteuert werden.
11
+
12
+ Beispiel einer Section (2 Column Layout mit Bild auf der Rechten Seite):
13
+
14
+ ```markdown
15
+
16
+ ## Unsere Leistungen
17
+ {: layout="use: #sec-card-2col"}
18
+
19
+ > Unterüberschrift
20
+
21
+ ![Bildbeschreibung](https://cdn.leuffen.de//leu-stock/v2/303/c_gfedcba/AdobeStock_83593352.webp)
22
+
23
+ Text in der Section
24
+ ```
25
+
26
+
27
+ Statt eines H-Tags können auch HR genutzt werden, wenn keien Überschrift nötig ist:
28
+
29
+ ```markdown
30
+
31
+ ---
32
+ {: layout="use: #sec-card-2col"}
33
+
34
+ ### Element 1
35
+
36
+ Text 1
37
+
38
+ ### Element 2
39
+
40
+ Text 2
41
+
42
+ ```
43
+
44
+
45
+ Achtung! zwischen HR oder H-Tag und Anweisungen in {: layout...} darf keine Leerzeile existieren!
package/index.scss CHANGED
@@ -8,3 +8,7 @@
8
8
  @import "@leuffen/isl-base/style";
9
9
  @import "@leuffen/jodastyle";
10
10
  @import "@leuffen/liscom";
11
+
12
+ .tjs__hero-max.desktop > slot > img:first-of-type {
13
+ opacity: 0;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leuffen/themejs1",
3
- "version": "8.2.50",
3
+ "version": "8.2.51",
4
4
  "description": "",
5
5
  "license": "proprietary",
6
6
  "main": "./index.js",
@@ -22,7 +22,8 @@
22
22
  "/_tpl",
23
23
  "*.scss",
24
24
  "*.json",
25
- "*.js"
25
+ "*.js",
26
+ "*.md"
26
27
  ],
27
28
  "workspaces": [
28
29
  "workspaces/*"
@@ -69,6 +69,10 @@
69
69
  .aside {
70
70
  --joda-class: p-4 p-lg-5;
71
71
  }
72
+ iframe.aside {
73
+ --joda-class: "";
74
+
75
+ }
72
76
 
73
77
  .aside-content {
74
78
  }