diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..d7a429f --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,16 @@ + + +{{ partial "head.html" . }} + + + {{ partialCached "preloader.html" . }} + {{ .Scratch.Set "bg" "bg-light-gray" }} + {{ partial "header.html" . }} + {{ if not .IsHome }} + {{ partial "page-header.html" . }} + {{ end }} + {{ block "main" . }}{{ end }} + {{ partialCached "footer.html" . }} + + + \ No newline at end of file diff --git a/layouts/_default/changelog.html b/layouts/_default/changelog.html new file mode 100644 index 0000000..01a1ea8 --- /dev/null +++ b/layouts/_default/changelog.html @@ -0,0 +1,25 @@ +{{ define "main" }} + +
+
+
+
+ +
+
+
+ {{ .Content }} +
+
+
+
+
+ +{{ end }} \ No newline at end of file diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..edcb8ec --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,35 @@ +{{ define "main" }} + +
+
+
+
+
+ {{ .Content }} +
+
+
+
+ {{ range .Data.Pages }} +
+
+ blog-image +
+ + {{ .Title }} + +

{{ .Summary }}

+
+
+ +
+ {{ end }} +
+
+
+ +{{ end }} \ No newline at end of file diff --git a/layouts/_default/pricing.html b/layouts/_default/pricing.html new file mode 100644 index 0000000..cbaf09b --- /dev/null +++ b/layouts/_default/pricing.html @@ -0,0 +1,69 @@ +{{ define "main" }} + +
+
+
+
+
{{ .Content }}
+
+
+
+
+
+ +
+ +
+ +
+ + {{with .Params.offer}}

{{ . | markdownify }}

{{end}} +
+
+
+ {{ range .Params.pricing_card }} +
+
+
+ + ${{.monthly_price}} + + \{{ i18n "month"}} + \{{ i18n "year"}} + +

{{ .name }}

+

{{ .content | markdownify}}

+ +
    + {{ range .services }} +
  • + + + {{ . |markdownify}} +
  • + {{ end }} +
+ {{ if .featured }} + {{ .button_label }} + + + + + + + {{ else }} + {{ .button_label }} + {{ end }} +
+
+
+ {{ end }} +
+
+
+ +{{ end }} \ No newline at end of file diff --git a/layouts/_default/regular.html b/layouts/_default/regular.html new file mode 100644 index 0000000..12ced95 --- /dev/null +++ b/layouts/_default/regular.html @@ -0,0 +1,15 @@ +{{ define "main" }} + +
+
+
+
+
+ {{ .Content }} +
+
+
+
+
+ +{{ end }} \ No newline at end of file