From 210fca3a77b9043e0f2c608e1eaff6f2ec37cdf3 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 24 Jul 2020 11:57:23 +0530 Subject: added landing page --- docs/_includes/appstoreimages.html | 67 ++++++++++++++++++++++++++++++++++++++ docs/_includes/features.html | 26 +++++++++++++++ docs/_includes/footer.html | 52 +++++++++++++++++++++++++++++ docs/_includes/head.html | 21 ++++++++++++ docs/_includes/header.html | 32 ++++++++++++++++++ docs/_includes/screencontent.html | 47 ++++++++++++++++++++++++++ 6 files changed, 245 insertions(+) create mode 100644 docs/_includes/appstoreimages.html create mode 100644 docs/_includes/features.html create mode 100644 docs/_includes/footer.html create mode 100644 docs/_includes/head.html create mode 100644 docs/_includes/header.html create mode 100644 docs/_includes/screencontent.html (limited to 'docs/_includes') diff --git a/docs/_includes/appstoreimages.html b/docs/_includes/appstoreimages.html new file mode 100644 index 0000000..7fac822 --- /dev/null +++ b/docs/_includes/appstoreimages.html @@ -0,0 +1,67 @@ + + +{% if site.ios_app_id %} + + + +{% endif %} \ No newline at end of file diff --git a/docs/_includes/features.html b/docs/_includes/features.html new file mode 100644 index 0000000..df75eec --- /dev/null +++ b/docs/_includes/features.html @@ -0,0 +1,26 @@ +
+ + {% for feature in site.features %} + + {% if feature.title %} +
+
+ + + + +
+
+

+ {{ feature.title }} +

+

+ {{ feature.description }} +

+
+
+ {% endif %} + + {% endfor %} + +
\ No newline at end of file diff --git a/docs/_includes/footer.html b/docs/_includes/footer.html new file mode 100644 index 0000000..291a15d --- /dev/null +++ b/docs/_includes/footer.html @@ -0,0 +1,52 @@ + \ No newline at end of file diff --git a/docs/_includes/head.html b/docs/_includes/head.html new file mode 100644 index 0000000..667196b --- /dev/null +++ b/docs/_includes/head.html @@ -0,0 +1,21 @@ + + + + + + + {{ site.page_title }} + + + + + + {% if site.enable_smart_app_banner %} + + {% endif %} + + + + + + \ No newline at end of file diff --git a/docs/_includes/header.html b/docs/_includes/header.html new file mode 100644 index 0000000..31e96e1 --- /dev/null +++ b/docs/_includes/header.html @@ -0,0 +1,32 @@ +
+ + +
\ No newline at end of file diff --git a/docs/_includes/screencontent.html b/docs/_includes/screencontent.html new file mode 100644 index 0000000..01da5dc --- /dev/null +++ b/docs/_includes/screencontent.html @@ -0,0 +1,47 @@ + + +{% for file in site.static_files %} + {% if file.path contains 'assets/screenshot/' %} + + {% elsif file.path contains 'assets/videos/' %} + {% unless file.path contains 'assets/videos/Place-video-files-here.txt' %} + + {% endunless %} + {% if file.extname == ".mov" or file.extname == ".mp4" %} + + {% elsif file.extname == ".ogg" %} + + {% elsif file.extname == ".webm" %} + + {% endif %} + {% endif %} +{% endfor %} \ No newline at end of file -- cgit v1.2.3