A content/watches.md => content/watches.md +31 -0
@@ 0,0 1,31 @@
+---
+title: 'Watches'
+draft: false
+description: 'My watches'
+---
+
+{{% box info %}}
+**Tissot - Chemin Des Tourelles** - Powermatic 80 - T099.407.11.048.00
+{{< image src="https://pxscdn.com/public/m/_v2/1646/2f76a232a-f08599/y1rpcc5w3SA0/0wjLxelBaoJbZUTa0KKNgPWNYt8sR1DCEG16vWEL.jpg"
+ width="50%"
+ alt="Tissot - Chemin Des Tourelles"
+ caption="Tissot - Chemin Des Tourelles" >}}
+{{% /box %}}
+
+{{% box info %}}
+**Swatch Sistem 51** - LAKE YIS420
+{{< image src="https://pixelfed.social/storage/m/d6eeff88aa0c9af7fd5f87cd6431a14d929d049b/7255f45f4d71984a9fef61c4db1bb3326604357c/OjNIJ00p44zkkDPvAJD7O6VveyF3RhO4yM4O6grj.jpeg"
+ width="50%"
+ alt="Tissot - Chemin Des Tourelles"
+ caption="Tissot - Chemin Des Tourelles" >}}
+{{% /box %}}
+
+{{% box info %}}
+**Fossil FS4682**
+{{% /box %}}
+
+
+{{% box info %}}
+**Festina Chronograh**
+F14 OS 60
+{{% /box %}}
A layouts/shortcodes/box.html => layouts/shortcodes/box.html +15 -0
@@ 0,0 1,15 @@
+{{/* Available notice types: danger, info, update */}}
+{{- $noticeType := .Get 0 -}}
+<div
+ class="notice{{ if eq $noticeType "warning" }}
+ notice--warning
+ {{ else if eq $noticeType "update" }}
+ notice--update
+ {{ end }}"
+>
+ {{- $noteContent := (markdownify .Inner | chomp) -}}
+ <div class="notice__content">
+ {{ $noteContent }}
+ </div>
+</div>
+<br />