-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 19a3549
Showing
24 changed files
with
256 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Sample workflow for building and deploying a Hugo site to GitHub Pages | ||
name: Deploy Hugo site to Pages | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: | ||
- main | ||
|
||
# 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 | ||
|
||
# Default to bash | ||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
# Build job | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
HUGO_VERSION: 0.115.4 | ||
steps: | ||
- name: Install Hugo CLI | ||
run: | | ||
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ | ||
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb | ||
- name: Install Dart Sass | ||
run: sudo snap install dart-sass | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
fetch-depth: 0 | ||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v3 | ||
- name: Install Node.js dependencies | ||
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" | ||
- name: Build with Hugo | ||
env: | ||
# For maximum backward compatibility with Hugo modules | ||
HUGO_ENVIRONMENT: production | ||
HUGO_ENV: production | ||
run: | | ||
hugo \ | ||
--gc \ | ||
--minify \ | ||
--baseURL "${{ steps.pages.outputs.base_url }}/" | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: ./public | ||
|
||
# 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@v2 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "themes/hugo-theme-stack"] | ||
path = themes/hugo-theme-stack | ||
url = https://github.com/CaiJimmy/hugo-theme-stack.git |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
date = {{ .Date }} | ||
draft = true | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"paths": { | ||
"*": [ | ||
"..\\themes\\hugo-theme-stack\\assets\\*" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
+++ | ||
[menu] | ||
[main] | ||
name = "Home" | ||
weight = "1" | ||
params.icon = "home" | ||
+++ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
+++ | ||
title = 'Archives' | ||
date = 2023-12-21T14:32:17+05:30 | ||
layout = "archives" | ||
slug = "archives" | ||
[menu] | ||
[main] | ||
weight = 2 | ||
params.icon = "archives" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
+++ | ||
title = "Search" | ||
slug = "search" | ||
layout = "search" | ||
outputs = ["html", "json"] | ||
[menu] | ||
[main] | ||
weight = 3 | ||
params.icon = "search" | ||
+++ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
+++ | ||
title = '25acres' | ||
date = 2023-12-21T13:56:29+05:30 | ||
draft = false | ||
slug = "25acres" | ||
image = 'cover.jpg' | ||
weight = 1 | ||
categories = ["security", "real-estate", "website"] | ||
tags = ["django", "python", "crytography", "security"] | ||
description = "A Real Estate Aggregator System; designed to facilitate the secure exchange and verification of property-related documents." | ||
+++ | ||
|
||
> Repository: https://github.com/W1NDSOR/25acres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
baseurl = 'https://w1ndsor.github.io' | ||
languageCode = "en-us" | ||
title = "Windsor" | ||
theme = "hugo-theme-stack" | ||
|
||
[[menu.main]] | ||
identifier = "ankit" | ||
name = "Ankit" | ||
url = "https://github.com/ankitkat042" | ||
[menu.main.params] | ||
icon = "user" | ||
newtab = true | ||
|
||
[[menu.main]] | ||
identifier = "chaitanya" | ||
name = "Chaitanya" | ||
url = "https://github.com/Chaitanya21033" | ||
[menu.main.params] | ||
icon = "user" | ||
newtab = true | ||
|
||
[[menu.main]] | ||
identifier = "lakshay" | ||
name = "Lakshay" | ||
url = "https://github.com/hyouteki" | ||
[menu.main.params] | ||
icon = "user" | ||
newtab = true | ||
|
||
[[menu.main]] | ||
identifier = "sameer" | ||
name = "Sameer" | ||
url = "https://github.com/guptasameer112" | ||
[menu.main.params] | ||
icon = "user" | ||
newtab = true | ||
|
||
[[menu.social]] | ||
identifier = "github" | ||
name = "GitHub" | ||
url = "https://github.com/W1NDSOR" | ||
[menu.social.params] | ||
icon = "brand-github" | ||
|
||
[params] | ||
# Pages placed under these sections will be shown on homepage and archive page. | ||
mainSections = ["projects"] | ||
# Output page's full content in RSS. | ||
favicon = "/avatar.jpg" | ||
|
||
[params.footer] | ||
since = 2023 | ||
# customText = "Made with love by Windsor" | ||
|
||
[params.dateFormat] | ||
published = "Jan 02, 2006" | ||
lastUpdated = "Jan 02, 2006 15:04 MST" | ||
|
||
[params.sidebar] | ||
emoji = "" | ||
subtitle = "P.S. Not affiliated with 'House of Windsor'" | ||
|
||
[params.sidebar.avatar] | ||
enabled = false | ||
local = true | ||
src = "/avatar.jpg" | ||
|
||
[params.article] | ||
math = false | ||
readingTime = true | ||
|
||
[params.article.license] | ||
enabled = true | ||
default = "Licensed under MIT" | ||
|
||
## Widgets | ||
[[params.widgets.homepage]] | ||
type = "search" | ||
|
||
[[params.widgets.homepage]] | ||
type = "archives" | ||
params.limit = 5 | ||
|
||
[[params.widgets.homepage]] | ||
type = "categories" | ||
params.limit = 10 | ||
|
||
[[params.widgets.homepage]] | ||
type = "tag-cloud" | ||
params.limit = 10 | ||
|
||
[[params.widgets.page]] | ||
type = "toc" | ||
|
||
[params.defaultImage.opengraph] | ||
enabled = false | ||
local = false | ||
src = "" | ||
|
||
[params.colorScheme] | ||
toggle = true | ||
default = "auto" | ||
|
||
[params.imageProcessing.cover] | ||
enabled = true | ||
|
||
[params.imageProcessing.content] | ||
enabled = true |
10 changes: 10 additions & 0 deletions
10
resources/_gen/assets/scss/scss/style.scss_511aa33e99371f93fbf403479ebfd32e.content
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
resources/_gen/assets/scss/scss/style.scss_511aa33e99371f93fbf403479ebfd32e.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"Target":"scss/style.min.24ef1cc321916467896e8c70c10c0ad7b98c2a8df14298032fb637216e397f50.css","MediaType":"text/css","Data":{"Integrity":"sha256-JO8cwyGRZGeJboxwwQwK17mMKo3xQpgDL7Y3IW45f1A="}} |
Binary file added
BIN
+410 Bytes
...gen/images/avatar_huda2458f72ce188392d75c5d51cd8e24e_373_300x0_resize_box_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.08 KB
.../cover_hu67bb3458f2d5ddf1205688d51c53bd57_85863_120x120_fill_q75_box_smart1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+164 KB
...5acres/cover_hu67bb3458f2d5ddf1205688d51c53bd57_85863_1600x0_resize_q75_box.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+60.4 KB
...25acres/cover_hu67bb3458f2d5ddf1205688d51c53bd57_85863_800x0_resize_q75_box.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+20.7 KB
.../cover_hu8b5b5025715cb5cd0941abb9c0a35ce2_1116903_120x120_fill_box_smart1_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+623 KB
...5acres/cover_hu8b5b5025715cb5cd0941abb9c0a35ce2_1116903_1600x0_resize_box_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+199 KB
...25acres/cover_hu8b5b5025715cb5cd0941abb9c0a35ce2_1116903_800x0_resize_box_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Submodule hugo-theme-stack
added at
21da06