-
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
Showing
40 changed files
with
298 additions
and
322 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,26 @@ | ||
name: Deploy Website | ||
on: | ||
push: | ||
paths: ["content/**", "static/**", "langs/**", "templates/**", "config.toml"] | ||
branches: [main] | ||
pull_request: | ||
paths: ["content/**", "static/**", "langs/**", "templates/**", "config.toml"] | ||
workflow_dispatch: | ||
jobs: | ||
build-and-deploy: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install Zola | ||
uses: taiki-e/install-action@zola | ||
- name: Build the site | ||
run: zola build | ||
- name: Deploy to GitHub Pages | ||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: HTML |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "hguinav"] | ||
path = themes/hguinav | ||
url = https://github.com/harrymkt/hguinav.git | ||
[submodule "zluinav"] | ||
path = themes/zluinav | ||
url = https://github.com/harrymkt/zluinav |
Empty file.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@echo off | ||
title Building | ||
hugo build | ||
zola build | ||
pause |
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,25 @@ | ||
# Build output directory | ||
output_dir = "HTML" | ||
# Title of the site | ||
title = "Harry Min Khant" | ||
base_url = "https://harrymkt.github.io" | ||
theme = "zluinav" | ||
# Default author to be used if the page does not have set one. | ||
author = "Harry Min Khant" | ||
# Feed filename | ||
feed_filenames = ["rss.xml"] | ||
# We don't need Sass | ||
compile_sass = false | ||
# Search feature is currently not supported in this theme | ||
build_search_index = false | ||
# Default language | ||
default_language = "en" | ||
|
||
[extra] | ||
nav = [ | ||
{name = "Home", url = "/.l./", key = "H", id = "nav1"}, | ||
{name = "Projects", url = "/.l./projects"}, | ||
{name = "Blog", url = "/.l./blog/", title = "Read the latest news", id = "nav3"}, | ||
{name = "Useful Communities", url = "/.l./community"}, | ||
{name = "Useful Articles", url = "/.l./articles"} | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
--- | ||
title: "Home" | ||
--- | ||
+++ | ||
title = "Home" | ||
+++ | ||
# Welcome | ||
<p id="welcomep"> | ||
<script>document.getElementById("welcomep").textContent="Hello "+get_storage("visitname","visiter")+", thanks for stopping bye! I am "+ownername+", and I hope my website will give you useful contents and creativities. Have a look around!";</script> | ||
|
||
The navigation menu is located at the top. The footer section is located below. In the footer you'll found some links, including to my social profiles and other useful links. | ||
|
||
## What can I help you with? | ||
* **Coding** : I could, and interest to coding, especially contributing or helping. | ||
* **Writing** : I love writing, especially Documentations and I would like to help as much as I can. | ||
* **Music design** : I could design music for you, such as mixing, producing. I use Reaper as the ultimit audio software. Note, I'm not professional music producer and in still learning, especially because technology and programming is I interest the most. | ||
- **Coding** : I could, and interest to coding, especially contributing or helping. | ||
- **Writing** : I love writing, especially Documentations and I would like to help as much as I can. | ||
- **Music design** : I could design music for you, such as mixing, producing. I use Reaper as the ultimit audio software. Note, I'm not professional music producer and in still learning, especially because technology and programming is I interest the most. | ||
|
||
For more information about what can I help you with and If it does not listed above, please contact me. |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
title: "About" | ||
--- | ||
+++ | ||
title = "About" | ||
+++ | ||
# About me | ||
<p id="myfirst"></p> | ||
<script> | ||
|
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
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
title: "Articles" | ||
--- | ||
+++ | ||
title = "Articles" | ||
template = "section_paginated.html" | ||
page_template = "blogpage.html" | ||
sort_by = "update_date" | ||
paginate_by = 10 | ||
+++ | ||
# Articles | ||
Here I will share useful articles. |
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
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
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
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
Oops, something went wrong.