From 4fcfb52f60f20cb091dcb4dbdf4a365fdea14651 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 27 Mar 2025 18:24:46 -0600 Subject: initial commit --- _includes/appstoreconnect.html | 81 +++++++++++++++++++++++ _includes/features.html | 23 +++++++ _includes/footer.html | 42 ++++++++++++ _includes/head.html | 145 +++++++++++++++++++++++++++++++++++++++++ _includes/header.html | 41 ++++++++++++ 5 files changed, 332 insertions(+) create mode 100644 _includes/appstoreconnect.html create mode 100644 _includes/features.html create mode 100644 _includes/footer.html create mode 100644 _includes/head.html create mode 100644 _includes/header.html (limited to '_includes') diff --git a/_includes/appstoreconnect.html b/_includes/appstoreconnect.html new file mode 100644 index 0000000..755caaf --- /dev/null +++ b/_includes/appstoreconnect.html @@ -0,0 +1,81 @@ +{% if site.ios_app_id %} + + +{% endif %} diff --git a/_includes/features.html b/_includes/features.html new file mode 100644 index 0000000..5920b14 --- /dev/null +++ b/_includes/features.html @@ -0,0 +1,23 @@ +
+
+ {% assign features_to_show = site.features | slice: 0, 6 %} + {% for feature in features_to_show %} + {% if feature.title %} +
+
+
+
+ + + +
+

{{ feature.title }}

+

{{ feature.description }}

+
+
+
+ {% endif %} + {% endfor %} + +
+
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..7409e0c --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,42 @@ + diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..cd90cbb --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,145 @@ + + + + {{ site.page_title }} + + + {% if site.enable_smart_app_banner %} + + {% endif %} + + + + diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..0404093 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,41 @@ + -- cgit v1.2.3