From 5262ce213bde042fe03619c75ae3ac0316806853 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Mon, 8 Apr 2024 14:15:04 +0530 Subject: comming-soon Blacklist --- themes/coming-soon/layouts/_default/baseof.html | 6 +++ themes/coming-soon/layouts/index.html | 56 ++++++++++++++++++++++ themes/coming-soon/layouts/partials/head.html | 13 +++++ .../coming-soon/layouts/partials/twitter-feed.html | 1 + 4 files changed, 76 insertions(+) create mode 100644 themes/coming-soon/layouts/_default/baseof.html create mode 100644 themes/coming-soon/layouts/index.html create mode 100644 themes/coming-soon/layouts/partials/head.html create mode 100644 themes/coming-soon/layouts/partials/twitter-feed.html (limited to 'themes/coming-soon/layouts') diff --git a/themes/coming-soon/layouts/_default/baseof.html b/themes/coming-soon/layouts/_default/baseof.html new file mode 100644 index 0000000..b2fb081 --- /dev/null +++ b/themes/coming-soon/layouts/_default/baseof.html @@ -0,0 +1,6 @@ + + + + {{- partial "head.html" . -}} + {{- block "main" . }}{{- end }} + diff --git a/themes/coming-soon/layouts/index.html b/themes/coming-soon/layouts/index.html new file mode 100644 index 0000000..d7c4825 --- /dev/null +++ b/themes/coming-soon/layouts/index.html @@ -0,0 +1,56 @@ + +{{ define "main" }} +
+ + {{ if .Site.Params.twitter.enable }} +
+ {{ partial "twitter-feed.html" . }} +
+ {{ end }} +
+ {{ if .Site.Params.title }} +

{{ .Site.Params.title }}

+ {{ else }} +

Coming Soon HUGO

+ {{ end }} +
+
+ {{ if .Site.Params.message }} +

{{ .Site.Params.message }}

+ {{ else }} +

COMING SOON

+ {{ end }} +
+

+
+
+
+

+ {{ .Site.Params.description}}

+
+
+
+ {{ if isset .Site.Params "socialicons" }} + + {{ end }} +
+ +{{ end }} \ No newline at end of file diff --git a/themes/coming-soon/layouts/partials/head.html b/themes/coming-soon/layouts/partials/head.html new file mode 100644 index 0000000..4f18d89 --- /dev/null +++ b/themes/coming-soon/layouts/partials/head.html @@ -0,0 +1,13 @@ + + + + {{ .Site.Params.title}} + + {{ if .Site.Params.favicon }} + + {{ else }} + + {{ end }} + + + \ No newline at end of file diff --git a/themes/coming-soon/layouts/partials/twitter-feed.html b/themes/coming-soon/layouts/partials/twitter-feed.html new file mode 100644 index 0000000..fac330a --- /dev/null +++ b/themes/coming-soon/layouts/partials/twitter-feed.html @@ -0,0 +1 @@ +Tweets by {{ .Site.Params.twitter.username }} \ No newline at end of file -- cgit v1.2.3-59-g8ed1b