From 49fdce6df81e4621037c36fcb3de8cf7304b7c85 Mon Sep 17 00:00:00 2001
From: Admin1 <121822963+mygitgn@users.noreply.github.com>
Date: Wed, 12 Jun 2024 01:45:12 +0700
Subject: [PATCH 1/6] Update CNAME
---
CNAME | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CNAME b/CNAME
index fb2667d61a..6559889df8 100644
--- a/CNAME
+++ b/CNAME
@@ -1 +1 @@
-wedding.rampatra.com
\ No newline at end of file
+flowerlay.com
\ No newline at end of file
From 81ecfc20b0f132eef2a35e7353297b7707d5c107 Mon Sep 17 00:00:00 2001
From: Admin1 <121822963+mygitgn@users.noreply.github.com>
Date: Thu, 13 Jun 2024 22:24:41 +0700
Subject: [PATCH 2/6] Delete CNAME
---
CNAME | 1 -
1 file changed, 1 deletion(-)
delete mode 100644 CNAME
diff --git a/CNAME b/CNAME
deleted file mode 100644
index 6559889df8..0000000000
--- a/CNAME
+++ /dev/null
@@ -1 +0,0 @@
-flowerlay.com
\ No newline at end of file
From f83fd40b007cd14dccbfe8dcc1251686b46d4e7f Mon Sep 17 00:00:00 2001
From: Admin1 <121822963+mygitgn@users.noreply.github.com>
Date: Mon, 22 Jul 2024 19:09:57 +0700
Subject: [PATCH 3/6] Update index.html
---
index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/index.html b/index.html
index 907052c29e..e5b66d3485 100755
--- a/index.html
+++ b/index.html
@@ -6,11 +6,11 @@
-
+
- Ram & Antara getting hitched!
+ LoveStory
From dae2e1bff47cffa8dd8c89ec90dc11a62617a5ab Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E1=80=99=E1=80=B1=E1=80=AC=E1=80=84=E1=80=BA=E1=80=99?=
=?UTF-8?q?=E1=80=84=E1=80=BA=E1=80=B8=E1=80=87=E1=80=84=E1=80=BA?=
<121822963+mygitgn@users.noreply.github.com>
Date: Sun, 25 Aug 2024 09:12:50 +0700
Subject: [PATCH 4/6] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index b76addb884..138486c5fa 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,6 @@ Lastly, if you use a Mac then you may also love [Presentify](https://presentify.
# Contribute
Firstly, a big thanks 🙏🏻 for the overwhelming response on [HackerNews](https://news.ycombinator.com/item?id=18556787), and [Reddit](https://www.reddit.com/r/opensource/comments/a1bx4h/i_am_open_sourcing_my_wedding_website_on_my_first/). If you would like to contribute to this project, you can do so by creating a [PR](https://help.github.com/articles/about-pull-requests/); and to support my work, you can click on one of the links under the Sponsors section or the button below.
-
+။
_P.S. For any queries or concerns, you can reach out to me on [Twitter](https://twitter.com/ram__patra). I'll try my best to help._
From 9105b6c7146379fb25fa3a2cd4b3aa54a2ac0f6e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E1=80=99=E1=80=B1=E1=80=AC=E1=80=84=E1=80=BA=E1=80=99?=
=?UTF-8?q?=E1=80=84=E1=80=BA=E1=80=B8=E1=80=87=E1=80=84=E1=80=BA?=
<121822963+mygitgn@users.noreply.github.com>
Date: Fri, 13 Sep 2024 06:17:23 +0700
Subject: [PATCH 5/6] Create jekyll-gh-pages.yml
---
.github/workflows/jekyll-gh-pages.yml | 51 +++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
create mode 100644 .github/workflows/jekyll-gh-pages.yml
diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml
new file mode 100644
index 0000000000..0ebd768bf2
--- /dev/null
+++ b/.github/workflows/jekyll-gh-pages.yml
@@ -0,0 +1,51 @@
+# Sample workflow for building and deploying a Jekyll site to GitHub Pages
+name: Deploy Jekyll with GitHub Pages dependencies preinstalled
+
+on:
+ # Runs on pushes targeting the default branch
+ push:
+ branches: ["master"]
+
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
+# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
+concurrency:
+ group: "pages"
+ cancel-in-progress: false
+
+jobs:
+ # Build job
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Setup Pages
+ uses: actions/configure-pages@v5
+ - name: Build with Jekyll
+ uses: actions/jekyll-build-pages@v1
+ with:
+ source: ./
+ destination: ./_site
+ - name: Upload artifact
+ uses: actions/upload-pages-artifact@v3
+
+ # Deployment job
+ deploy:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v4
From fb6e1ef34e903e214ff8e5282e61ce92e70872ca Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E1=80=99=E1=80=B1=E1=80=AC=E1=80=84=E1=80=BA=E1=80=99?=
=?UTF-8?q?=E1=80=84=E1=80=BA=E1=80=B8=E1=80=87=E1=80=84=E1=80=BA?=
<121822963+mygitgn@users.noreply.github.com>
Date: Fri, 13 Sep 2024 06:22:54 +0700
Subject: [PATCH 6/6] Create CNAME
---
CNAME | 1 +
1 file changed, 1 insertion(+)
create mode 100644 CNAME
diff --git a/CNAME b/CNAME
new file mode 100644
index 0000000000..b026e3116a
--- /dev/null
+++ b/CNAME
@@ -0,0 +1 @@
+www.flowerlay.io