INIT
0
.hugo_build.lock
Normal file
BIN
assets/images/bg-color-overlay.png
Normal file
After Width: | Height: | Size: 256 KiB |
BIN
assets/images/blog/blog-1.jpg
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
assets/images/blog/blog-2.jpg
Normal file
After Width: | Height: | Size: 85 KiB |
BIN
assets/images/blog/blog-3-1.jpg
Normal file
After Width: | Height: | Size: 422 KiB |
BIN
assets/images/blog/blog-3.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
assets/images/blog/blog-4.jpg
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
assets/images/blog/blog-5.jpg
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
assets/images/blog/blog-6.jpg
Normal file
After Width: | Height: | Size: 114 KiB |
BIN
assets/images/favicon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
assets/images/gallery/project-1.jpg
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/images/gallery/project-3.jpg
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
assets/images/hero-image.png
Normal file
After Width: | Height: | Size: 331 KiB |
BIN
assets/images/project/project-1.jpg
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/images/project/project-2.jpg
Normal file
After Width: | Height: | Size: 8.3 MiB |
BIN
assets/images/project/project-3.jpg
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
assets/images/project/project-4.jpg
Normal file
After Width: | Height: | Size: 5.0 MiB |
BIN
assets/images/project/project-5.jpg
Normal file
After Width: | Height: | Size: 8.3 MiB |
BIN
assets/images/project/project-6.jpg
Normal file
After Width: | Height: | Size: 3.7 MiB |
11
assets/jsconfig.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"*": [
|
||||||
|
"../../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2@v2.21100.20000/package/dist/cjs/*",
|
||||||
|
"../../../.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.2+incompatible/js/*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
0
assets/scss/custom.scss
Executable file
62
config/_default/hugo.toml
Executable file
@ -0,0 +1,62 @@
|
|||||||
|
######################## default configuration ####################
|
||||||
|
baseURL = "https://demo.gethugothemes.com/professors/site/"
|
||||||
|
title = "Professors - Personal Portfolio Theme"
|
||||||
|
theme = ["professors-hugo"]
|
||||||
|
# Default time zone for time stamps; use any valid tz database name: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
||||||
|
timeZone = "America/New_York"
|
||||||
|
# post pagination
|
||||||
|
pagination.pagerSize = 6 # see https://gohugo.io/extras/pagination/
|
||||||
|
# post excerpt
|
||||||
|
summaryLength = 10 # see https://gohugo.io/content-management/excerpts/
|
||||||
|
|
||||||
|
########################### Services #############################
|
||||||
|
[services]
|
||||||
|
[services.googleAnalytics]
|
||||||
|
ID = 'G-MEASUREMENT_ID' # see https://gohugo.io/templates/internal/#configure-google-analytics
|
||||||
|
|
||||||
|
############################# Build ##############################
|
||||||
|
[build]
|
||||||
|
writeStats = true
|
||||||
|
|
||||||
|
############################# Outputs ##############################
|
||||||
|
[outputs]
|
||||||
|
home = ["HTML", "RSS", "JSON", "WebAppManifest"]
|
||||||
|
|
||||||
|
############################# Imaging ##############################
|
||||||
|
[imaging]
|
||||||
|
# See https://github.com/disintegration/imaging
|
||||||
|
# Default JPEG or WebP quality setting. Default is 75.
|
||||||
|
quality = 80
|
||||||
|
resampleFilter = "Lanczos"
|
||||||
|
|
||||||
|
############################# Caches ###############################
|
||||||
|
[caches]
|
||||||
|
[caches.images]
|
||||||
|
dir = ":resourceDir/_gen"
|
||||||
|
maxAge = "720h"
|
||||||
|
|
||||||
|
[caches.assets]
|
||||||
|
dir = ":resourceDir/_gen"
|
||||||
|
maxAge = "720h"
|
||||||
|
|
||||||
|
|
||||||
|
############################# Markup ###############################
|
||||||
|
[markup]
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
unsafe = true
|
||||||
|
|
||||||
|
[markup.highlight]
|
||||||
|
style = 'monokai' # see https://xyproto.github.io/splash/docs/all.html
|
||||||
|
|
||||||
|
|
||||||
|
########################### Media types ###########################
|
||||||
|
[mediaTypes]
|
||||||
|
[mediaTypes."application/manifest+json"]
|
||||||
|
suffixes = ["webmanifest"]
|
||||||
|
|
||||||
|
|
||||||
|
############################ Output Format ###########################
|
||||||
|
[outputFormats]
|
||||||
|
[outputFormats.WebAppManifest]
|
||||||
|
mediaType = "application/manifest+json"
|
||||||
|
rel = "manifest"
|
36
config/_default/menus.toml
Executable file
@ -0,0 +1,36 @@
|
|||||||
|
# main menu
|
||||||
|
[[main]]
|
||||||
|
name = "Introduction"
|
||||||
|
url = "#banner"
|
||||||
|
pre = "fa-solid fa-user"
|
||||||
|
weight = -1
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
name = "My Skills"
|
||||||
|
url = "#skill"
|
||||||
|
pre = "fa-solid fa-list-check"
|
||||||
|
weight = 2
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
name = "Resume"
|
||||||
|
url = "#resume"
|
||||||
|
pre = "fa-solid fa-address-card"
|
||||||
|
weight = 3
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
name = "Portfolio"
|
||||||
|
url = "#portfolio"
|
||||||
|
pre = "fa-solid fa-box"
|
||||||
|
weight = 4
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
name = "Blog"
|
||||||
|
url = "#blog"
|
||||||
|
pre = "fa-solid fa-blog"
|
||||||
|
weight = 5
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
name = "Contact"
|
||||||
|
url = "#contact"
|
||||||
|
pre = "fa-solid fa-paper-plane"
|
||||||
|
weight = 6
|
63
config/_default/module.toml
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
[hugoVersion]
|
||||||
|
extended = true
|
||||||
|
min = "0.123.7"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/pwa"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/gzip-caching"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/images"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/videos"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/tab"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/accordion"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/gallery-slider"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/table-of-contents"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/icons/font-awesome"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/components/cookie-consent"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/components/render-link"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/components/valine-comment"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/components/crisp-chat"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/shortcodes/button"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/shortcodes/codepen"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/shortcodes/notice"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/seo-tools/site-verifications"
|
||||||
|
|
||||||
|
[[imports]]
|
||||||
|
path = "github.com/gethugothemes/hugo-modules/seo-tools/basic-seo"
|
119
config/_default/params.toml
Executable file
@ -0,0 +1,119 @@
|
|||||||
|
#################### default parameters ################################
|
||||||
|
# favicon
|
||||||
|
favicon = "images/favicon.png"
|
||||||
|
# purgeCSS
|
||||||
|
purge_css = true
|
||||||
|
# theme-mode
|
||||||
|
theme_switcher = true
|
||||||
|
theme_default = "dark" # available options [light/dark]
|
||||||
|
# Main Sections
|
||||||
|
mainSections = ["blog"]
|
||||||
|
# image gallery shortcode
|
||||||
|
image_gallery = true
|
||||||
|
# contact form action
|
||||||
|
contact_form_action = "#" # contact form works with [https://airform.io/] or [https://formspree.io]
|
||||||
|
# google tag manager, see https://developers.google.com/tag-manager/
|
||||||
|
google_tag_manager = "" # example: G-XXXXXXXXXX
|
||||||
|
google_adsense = "" # example: ca-pub-xxxxxxxxxxxxxxxx
|
||||||
|
# custom script on header, example: custom_script= "<script>console.log(\"Hello World\")</script>"
|
||||||
|
custom_script = ""
|
||||||
|
|
||||||
|
# copyright
|
||||||
|
theme_copyright = true
|
||||||
|
copyright = "Copyright by you"
|
||||||
|
|
||||||
|
# seo meta data for OpenGraph / Twitter Card
|
||||||
|
# seo module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/basic-seo
|
||||||
|
[metadata]
|
||||||
|
keywords = ["Boilerplate", "Hugo", "Themefisher", "GetHugoThemes"]
|
||||||
|
description = "This is meta description"
|
||||||
|
author = "Themefisher"
|
||||||
|
image = "images/favicon.png" # this image will be used as fallback if a page has no image of its own
|
||||||
|
|
||||||
|
############################# Social Link ########################
|
||||||
|
[sidebar]
|
||||||
|
social_enable = true
|
||||||
|
social_title = "Social Links"
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
title = "facebook"
|
||||||
|
icon = "fa-brands fa-facebook" # fontawesome icon pack : https://fontawesome.com/icons/
|
||||||
|
link = "https://www.facebook.com/"
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
title = "twitter"
|
||||||
|
icon = "fa-brands fa-twitter" # fontawesome icon pack : https://fontawesome.com/icons/
|
||||||
|
link = "https://www.twitter.com/"
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
title = "linkedin"
|
||||||
|
icon = "fa-brands fa-linkedin" # fontawesome icon pack : https://fontawesome.com/icons/
|
||||||
|
link = "https://www.linkedin.com/"
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
title = "instagram"
|
||||||
|
icon = "fa-brands fa-instagram" # fontawesome icon pack : https://fontawesome.com/icons/
|
||||||
|
link = "https://www.instagram.com/"
|
||||||
|
|
||||||
|
# cookies
|
||||||
|
# cookies module: https://github.com/gethugothemes/hugo-modules/tree/master/components/cookie-consent
|
||||||
|
[cookies]
|
||||||
|
enable = false
|
||||||
|
expire_days = 2
|
||||||
|
content = "This site uses cookies. By continuing to use this website, you agree to their use."
|
||||||
|
button = "I Accept"
|
||||||
|
|
||||||
|
# crisp chat
|
||||||
|
# Crisp module: https://github.com/gethugothemes/hugo-modules/tree/master/components/crisp-chat
|
||||||
|
[crisp_chat]
|
||||||
|
enable = false
|
||||||
|
crisp_website_id = "9aa449e1-9999-422a-938f-8567982eec6d" # replace this code with yours
|
||||||
|
# Check this video tutorial to get your crisp website ID - https://www.youtube.com/watch?v=nW5UX6iVdFc
|
||||||
|
|
||||||
|
# valine comment
|
||||||
|
# valine comment module: https://github.com/gethugothemes/hugo-modules/tree/master/components/valine-comment
|
||||||
|
[valine_comment]
|
||||||
|
enable = false
|
||||||
|
appId = "" # replace this code with yours [ex: QGzwQXOqs5JOhN4RGPOkR2mR-MdYXbMMI]
|
||||||
|
appKey = "" # replace this code with yours [ex: WBmoGyJtbqUswvfLh6L8iEBr]
|
||||||
|
# language = "change language translation from `i18n`"
|
||||||
|
avatar = "" # see : https://valine.js.org/en/avatar.html
|
||||||
|
pageSize = 10 # will show 10 comments per page
|
||||||
|
visitor = true
|
||||||
|
highlight = true # Code highlighting
|
||||||
|
recordIP = true # Record reviewer IP.
|
||||||
|
enableQQ = false # https://valine.js.org/en/configuration.html#enableQQ
|
||||||
|
# serverURLs = "" # https://leancloud.your_website.com
|
||||||
|
# Check Valine's official documentation here - https://valine.js.org/en/configuration.html
|
||||||
|
|
||||||
|
# matomo tracking: see https://matomo.org/
|
||||||
|
# matomo tracking module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/matomo-analytics
|
||||||
|
[matomo]
|
||||||
|
enable = false
|
||||||
|
url = "" # your matomo url
|
||||||
|
id = "" # your matomo id
|
||||||
|
|
||||||
|
# baidu analytics: see https://tongji.baidu.com/
|
||||||
|
# baidu analytics module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/baidu-analytics
|
||||||
|
[baidu]
|
||||||
|
enable = false
|
||||||
|
analytics_id = "" # Your ID
|
||||||
|
|
||||||
|
# plausible analytics: see https://plausible.io/
|
||||||
|
# plausible analytics module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/plausible-analytics
|
||||||
|
[plausible]
|
||||||
|
enable = false
|
||||||
|
domain = "" # yourdomain.com
|
||||||
|
|
||||||
|
# counter analytics: see https://counter.dev/setup.html
|
||||||
|
# counter analytics module: https://github.com/gethugothemes/hugo-modules/tree/master/seo-tools/counter-analytics
|
||||||
|
[counter]
|
||||||
|
enable = false
|
||||||
|
username = "" # your username
|
||||||
|
|
||||||
|
# site verifications
|
||||||
|
[site_verification]
|
||||||
|
google = "" # Your verification code
|
||||||
|
bing = "" # Your verification code
|
||||||
|
baidu = "" # Your verification code
|
||||||
|
facebook = "" # Your verification code
|
155
content/_index.md
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
---
|
||||||
|
title: Home | Professors Personal Portfolio Theme
|
||||||
|
description: ''
|
||||||
|
|
||||||
|
# banner
|
||||||
|
banner:
|
||||||
|
greeting: "Hi there!"
|
||||||
|
title: "I'm **Eric Bettinger**"
|
||||||
|
image: "images/hero-image.png"
|
||||||
|
designation: "Professor of Artificial Intelligence"
|
||||||
|
institution: "AI Lab of Stanford University"
|
||||||
|
description: "A professor of artificial intelligence at the Stanford AI Lab. I research interests include distributed robotics, mobile computing and programmable matter."
|
||||||
|
|
||||||
|
additional_info:
|
||||||
|
- title: "Email"
|
||||||
|
content: "ericbettinger@gmail.com"
|
||||||
|
- title: "Phone"
|
||||||
|
content: "+1-800-870-6397"
|
||||||
|
- title: "Age"
|
||||||
|
content: "56 years"
|
||||||
|
- title: "Nationality"
|
||||||
|
content: "American"
|
||||||
|
- title: "Languages"
|
||||||
|
content: "English, French"
|
||||||
|
- title: "Address"
|
||||||
|
content: "3891 Ranchview Dr. Richardson California"
|
||||||
|
|
||||||
|
button:
|
||||||
|
enable: true
|
||||||
|
label: "Download Resume"
|
||||||
|
isDownloadable: true
|
||||||
|
link: "#?"
|
||||||
|
|
||||||
|
|
||||||
|
# skill
|
||||||
|
skill:
|
||||||
|
enable: true
|
||||||
|
title: "My **Skills**"
|
||||||
|
skills:
|
||||||
|
- title: "Playing Science"
|
||||||
|
percentage: "95"
|
||||||
|
- title: "Arts And Craft"
|
||||||
|
percentage: "90"
|
||||||
|
- title: "Creative Writing"
|
||||||
|
percentage: "55"
|
||||||
|
- title: "English Lessons"
|
||||||
|
percentage: "95"
|
||||||
|
- title: "SQL"
|
||||||
|
percentage: "80"
|
||||||
|
- title: "Mongodb"
|
||||||
|
percentage: "95"
|
||||||
|
- title: "Tableau"
|
||||||
|
percentage: "75"
|
||||||
|
- title: "Stella Architect"
|
||||||
|
percentage: "90"
|
||||||
|
|
||||||
|
|
||||||
|
# experience
|
||||||
|
experience:
|
||||||
|
enable: true
|
||||||
|
title: "Experiences"
|
||||||
|
experience_list:
|
||||||
|
- title: "University of Eastern Finland"
|
||||||
|
duration: "Jan 2022 – Present"
|
||||||
|
company: "Rolling Thunder"
|
||||||
|
icon: "fa-solid fa-pen-ruler"
|
||||||
|
description: |
|
||||||
|
Maecenas tempus faucibus rutrum. Duis eu aliquam urna. Proin vitae nulla tristique, ornare felis id congue libero.
|
||||||
|
|
||||||
|
- title: "University of Jyväskylä"
|
||||||
|
duration: "Jan 2020 – Dec 2021"
|
||||||
|
company: "Apple Inc."
|
||||||
|
icon: "fa-solid fa-palette"
|
||||||
|
description: |
|
||||||
|
Aliquam tincidunt malesuada tortor vitae iaculis. In eu turpis risus quis. Quisque fringilla mollis risus eu pulvinar.
|
||||||
|
|
||||||
|
- title: "University of Eastern Finland"
|
||||||
|
duration: "Jan 2016 – Dec 2019"
|
||||||
|
company: "Google Inc."
|
||||||
|
icon: "fa-solid fa-laptop-code"
|
||||||
|
description: |
|
||||||
|
Aliquam tincidunt malesuada tortor vitae iaculis. In eu turpis risus quis. Quisque fringilla mollis risus eu pulvinar.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# education
|
||||||
|
education:
|
||||||
|
enable: true
|
||||||
|
title: "Education"
|
||||||
|
education_list:
|
||||||
|
- title: "PhD in Statistics"
|
||||||
|
duration: "Jan 2021 to Dec 2022"
|
||||||
|
icon: "fa-solid fa-building-columns"
|
||||||
|
description: |
|
||||||
|
Aliquam tincidunt malesuada tortor vitae iaculis. In eu turpis risus quis. Quisque fringilla mollis risus eu pulvinar.
|
||||||
|
|
||||||
|
- title: "MSc in Statistics"
|
||||||
|
description: ""
|
||||||
|
institution: ""
|
||||||
|
duration: "Jan 2019 - Dec 2020"
|
||||||
|
icon: "fa-solid fa-person-chalkboard"
|
||||||
|
description: |
|
||||||
|
Aliquam tincidunt malesuada tortor vitae iaculis. In eu turpis risus quis. Quisque fringilla mollis risus eu pulvinar.
|
||||||
|
|
||||||
|
- title: "BSc in Statistics"
|
||||||
|
description: ""
|
||||||
|
institution: ""
|
||||||
|
duration: "Jan 2019 - Dec 2020"
|
||||||
|
icon: "fa-solid fa-graduation-cap"
|
||||||
|
description: |
|
||||||
|
Aliquam tincidunt malesuada tortor vitae iaculis. In eu turpis risus quis. Quisque fringilla mollis risus eu pulvinar.
|
||||||
|
|
||||||
|
|
||||||
|
# projects
|
||||||
|
projects:
|
||||||
|
enable: true
|
||||||
|
button:
|
||||||
|
link: "projects/"
|
||||||
|
label: "All Projects"
|
||||||
|
|
||||||
|
|
||||||
|
# blogs
|
||||||
|
blogs:
|
||||||
|
enable: true
|
||||||
|
button:
|
||||||
|
link: "blog/"
|
||||||
|
label: "All Blogs"
|
||||||
|
|
||||||
|
|
||||||
|
# contact
|
||||||
|
contact:
|
||||||
|
enable: true
|
||||||
|
title: "Get in Touch"
|
||||||
|
|
||||||
|
contact_info:
|
||||||
|
title: "Contact"
|
||||||
|
subtitle: "Fill up the form and our Team will get back to you within 24 hours."
|
||||||
|
|
||||||
|
contact_details:
|
||||||
|
- name: "Call"
|
||||||
|
icon: "fa-solid fa-phone-volume"
|
||||||
|
content: "[310-437-2766](tel:310-437-2766)"
|
||||||
|
|
||||||
|
- name: "Mail"
|
||||||
|
icon: "fa-solid fa-envelope"
|
||||||
|
content: "[williamson@gmail.com](mailto:williamson@gmail.com)"
|
||||||
|
|
||||||
|
- name: "Address"
|
||||||
|
icon: "fa-solid fa-location-dot"
|
||||||
|
content: "1901 Thornridge Cir. Shiloh, Hawaii"
|
||||||
|
|
||||||
|
- name: "Fax"
|
||||||
|
icon: "fa-solid fa-phone-volume"
|
||||||
|
content: "[555-123-4567](tel:555-123-4567)"
|
||||||
|
---
|
5
content/blog/_index.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
title: "Recent Articles"
|
||||||
|
description: ""
|
||||||
|
draft: false
|
||||||
|
---
|
162
content/blog/post-1.md
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
---
|
||||||
|
title: "Publishing and graphic desi"
|
||||||
|
image: "images/blog/blog-1.jpg"
|
||||||
|
date: "2022-01-01 00:00:00 +0000 UTC"
|
||||||
|
description: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec eros tellus, sceleri sque nec, rhoncus eget, sollicitudin eu,"
|
||||||
|
categories: ["book", "last hope"]
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6.
|
||||||
|
|
||||||
|
# Heading 1
|
||||||
|
## Heading 2
|
||||||
|
### Heading 3
|
||||||
|
#### Heading 4
|
||||||
|
##### Heading 5
|
||||||
|
###### Heading 6
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Emphasis
|
||||||
|
|
||||||
|
Emphasis, aka italics, with *asterisks* or _underscores_.
|
||||||
|
|
||||||
|
Strong emphasis, aka bold, with **asterisks** or __underscores__.
|
||||||
|
|
||||||
|
Combined emphasis with **asterisks and _underscores_**.
|
||||||
|
|
||||||
|
Strikethrough uses two tildes. ~~Scratch this.~~
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Link
|
||||||
|
[I'm an inline-style link](https://www.google.com)
|
||||||
|
|
||||||
|
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||||
|
|
||||||
|
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
||||||
|
|
||||||
|
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||||
|
|
||||||
|
[You can use numbers for reference-style link definitions][1]
|
||||||
|
|
||||||
|
Or leave it empty and use the [link text itself].
|
||||||
|
|
||||||
|
URLs and URLs in angle brackets will automatically get turned into links.
|
||||||
|
http://www.example.com or <http://www.example.com> and sometimes
|
||||||
|
example.com (but not on Github, for example).
|
||||||
|
|
||||||
|
Some text to show that the reference links can follow later.
|
||||||
|
|
||||||
|
[arbitrary case-insensitive reference text]: https://www.themefisher.com
|
||||||
|
[1]: https://gethugothemes.com
|
||||||
|
[link text itself]: https://www.getjekyllthemes.com
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Paragraph
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Ordered List
|
||||||
|
|
||||||
|
1. List item
|
||||||
|
2. List item
|
||||||
|
3. List item
|
||||||
|
4. List item
|
||||||
|
5. List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Unordered List
|
||||||
|
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Code and Syntax Highlighting
|
||||||
|
|
||||||
|
Inline `code` has `back-ticks around` it.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var s = "JavaScript syntax highlighting";
|
||||||
|
alert(s);
|
||||||
|
```
|
||||||
|
|
||||||
|
```python
|
||||||
|
s = "Python syntax highlighting"
|
||||||
|
print s
|
||||||
|
```
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Blockquote
|
||||||
|
|
||||||
|
> This is a blockquote example.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Inline HTML
|
||||||
|
|
||||||
|
You can also use raw HTML in your Markdown, and it'll mostly work pretty well.
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Definition list</dt>
|
||||||
|
<dd>Is something people use sometimes.</dd>
|
||||||
|
|
||||||
|
<dt>Markdown in HTML</dt>
|
||||||
|
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
{{< notice note >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice tip >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice info >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice warning >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Tables
|
||||||
|
|
||||||
|
Colons can be used to align columns.
|
||||||
|
|
||||||
|
| Tables | Are | Cool |
|
||||||
|
| ------------- |:-------------:| -----:|
|
||||||
|
| col 3 is | right-aligned | $1600 |
|
||||||
|
| col 2 is | centered | $12 |
|
||||||
|
| zebra stripes | are neat | $1 |
|
||||||
|
|
||||||
|
There must be at least 3 dashes separating each header cell.
|
||||||
|
The outer pipes (|) are optional, and you don't need to make the
|
||||||
|
raw Markdown line up prettily. You can also use inline Markdown.
|
||||||
|
|
||||||
|
Markdown | Less | Pretty
|
||||||
|
--- | --- | ---
|
||||||
|
*Still* | `renders` | **nicely**
|
||||||
|
1 | 2 | 3
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Image
|
||||||
|
|
||||||
|
{{< image src="images/blog/blog-5.jpg" caption="an image caption" alt="alter-text" height="425" width="860" position="center" command="fit" option="q100" class="img-fluid" title="image title" >}}
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Youtube video
|
||||||
|
|
||||||
|
{{< youtube ResipmZmpDU >}}
|
163
content/blog/post-2.md
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
---
|
||||||
|
title: "New Friends Everyday at Kiddie"
|
||||||
|
image: "images/blog/blog-2.jpg"
|
||||||
|
date: "2022-01-02 00:00:00 +0000 UTC"
|
||||||
|
description: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec eros tellus, sceleri sque nec, rhoncus eget, sollicitudin eu,"
|
||||||
|
categories: ["writing"]
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6.
|
||||||
|
|
||||||
|
# Heading 1
|
||||||
|
## Heading 2
|
||||||
|
### Heading 3
|
||||||
|
#### Heading 4
|
||||||
|
##### Heading 5
|
||||||
|
###### Heading 6
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Emphasis
|
||||||
|
|
||||||
|
Emphasis, aka italics, with *asterisks* or _underscores_.
|
||||||
|
|
||||||
|
Strong emphasis, aka bold, with **asterisks** or __underscores__.
|
||||||
|
|
||||||
|
Combined emphasis with **asterisks and _underscores_**.
|
||||||
|
|
||||||
|
Strikethrough uses two tildes. ~~Scratch this.~~
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Link
|
||||||
|
[I'm an inline-style link](https://www.google.com)
|
||||||
|
|
||||||
|
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||||
|
|
||||||
|
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
||||||
|
|
||||||
|
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||||
|
|
||||||
|
[You can use numbers for reference-style link definitions][1]
|
||||||
|
|
||||||
|
Or leave it empty and use the [link text itself].
|
||||||
|
|
||||||
|
URLs and URLs in angle brackets will automatically get turned into links.
|
||||||
|
http://www.example.com or <http://www.example.com> and sometimes
|
||||||
|
example.com (but not on Github, for example).
|
||||||
|
|
||||||
|
Some text to show that the reference links can follow later.
|
||||||
|
|
||||||
|
[arbitrary case-insensitive reference text]: https://www.themefisher.com
|
||||||
|
[1]: https://gethugothemes.com
|
||||||
|
[link text itself]: https://www.getjekyllthemes.com
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Paragraph
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Ordered List
|
||||||
|
|
||||||
|
1. List item
|
||||||
|
2. List item
|
||||||
|
3. List item
|
||||||
|
4. List item
|
||||||
|
5. List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Unordered List
|
||||||
|
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Code and Syntax Highlighting
|
||||||
|
|
||||||
|
Inline `code` has `back-ticks around` it.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var s = "JavaScript syntax highlighting";
|
||||||
|
alert(s);
|
||||||
|
```
|
||||||
|
|
||||||
|
```python
|
||||||
|
s = "Python syntax highlighting"
|
||||||
|
print s
|
||||||
|
```
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Blockquote
|
||||||
|
|
||||||
|
> This is a blockquote example.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Inline HTML
|
||||||
|
|
||||||
|
You can also use raw HTML in your Markdown, and it'll mostly work pretty well.
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Definition list</dt>
|
||||||
|
<dd>Is something people use sometimes.</dd>
|
||||||
|
|
||||||
|
<dt>Markdown in HTML</dt>
|
||||||
|
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
{{< notice note >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice tip >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice info >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice warning >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Tables
|
||||||
|
|
||||||
|
Colons can be used to align columns.
|
||||||
|
|
||||||
|
| Tables | Are | Cool |
|
||||||
|
| ------------- |:-------------:| -----:|
|
||||||
|
| col 3 is | right-aligned | $1600 |
|
||||||
|
| col 2 is | centered | $12 |
|
||||||
|
| zebra stripes | are neat | $1 |
|
||||||
|
|
||||||
|
There must be at least 3 dashes separating each header cell.
|
||||||
|
The outer pipes (|) are optional, and you don't need to make the
|
||||||
|
raw Markdown line up prettily. You can also use inline Markdown.
|
||||||
|
|
||||||
|
Markdown | Less | Pretty
|
||||||
|
--- | --- | ---
|
||||||
|
*Still* | `renders` | **nicely**
|
||||||
|
1 | 2 | 3
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Image
|
||||||
|
|
||||||
|
{{< image src="images/gallery/project-3.jpg" caption="an image caption" alt="alter-text" height="425" width="860" position="center" command="fit" option="q100" class="img-fluid" title="image title" >}}
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Youtube video
|
||||||
|
|
||||||
|
{{< youtube ResipmZmpDU >}}
|
163
content/blog/post-3.md
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
---
|
||||||
|
title: "In publishing and graphic desi"
|
||||||
|
image: "images/blog/blog-3.jpg"
|
||||||
|
date: "2022-01-03 00:00:00 +0000 UTC"
|
||||||
|
description: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec eros tellus, sceleri sque nec, rhoncus eget, sollicitudin eu,"
|
||||||
|
categories: ["book rack"]
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6.
|
||||||
|
|
||||||
|
# Heading 1
|
||||||
|
## Heading 2
|
||||||
|
### Heading 3
|
||||||
|
#### Heading 4
|
||||||
|
##### Heading 5
|
||||||
|
###### Heading 6
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Emphasis
|
||||||
|
|
||||||
|
Emphasis, aka italics, with *asterisks* or _underscores_.
|
||||||
|
|
||||||
|
Strong emphasis, aka bold, with **asterisks** or __underscores__.
|
||||||
|
|
||||||
|
Combined emphasis with **asterisks and _underscores_**.
|
||||||
|
|
||||||
|
Strikethrough uses two tildes. ~~Scratch this.~~
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Link
|
||||||
|
[I'm an inline-style link](https://www.google.com)
|
||||||
|
|
||||||
|
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||||
|
|
||||||
|
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
||||||
|
|
||||||
|
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||||
|
|
||||||
|
[You can use numbers for reference-style link definitions][1]
|
||||||
|
|
||||||
|
Or leave it empty and use the [link text itself].
|
||||||
|
|
||||||
|
URLs and URLs in angle brackets will automatically get turned into links.
|
||||||
|
http://www.example.com or <http://www.example.com> and sometimes
|
||||||
|
example.com (but not on Github, for example).
|
||||||
|
|
||||||
|
Some text to show that the reference links can follow later.
|
||||||
|
|
||||||
|
[arbitrary case-insensitive reference text]: https://www.themefisher.com
|
||||||
|
[1]: https://gethugothemes.com
|
||||||
|
[link text itself]: https://www.getjekyllthemes.com
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Paragraph
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Ordered List
|
||||||
|
|
||||||
|
1. List item
|
||||||
|
2. List item
|
||||||
|
3. List item
|
||||||
|
4. List item
|
||||||
|
5. List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Unordered List
|
||||||
|
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Code and Syntax Highlighting
|
||||||
|
|
||||||
|
Inline `code` has `back-ticks around` it.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var s = "JavaScript syntax highlighting";
|
||||||
|
alert(s);
|
||||||
|
```
|
||||||
|
|
||||||
|
```python
|
||||||
|
s = "Python syntax highlighting"
|
||||||
|
print s
|
||||||
|
```
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Blockquote
|
||||||
|
|
||||||
|
> This is a blockquote example.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Inline HTML
|
||||||
|
|
||||||
|
You can also use raw HTML in your Markdown, and it'll mostly work pretty well.
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Definition list</dt>
|
||||||
|
<dd>Is something people use sometimes.</dd>
|
||||||
|
|
||||||
|
<dt>Markdown in HTML</dt>
|
||||||
|
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
{{< notice note >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice tip >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice info >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice warning >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Tables
|
||||||
|
|
||||||
|
Colons can be used to align columns.
|
||||||
|
|
||||||
|
| Tables | Are | Cool |
|
||||||
|
| ------------- |:-------------:| -----:|
|
||||||
|
| col 3 is | right-aligned | $1600 |
|
||||||
|
| col 2 is | centered | $12 |
|
||||||
|
| zebra stripes | are neat | $1 |
|
||||||
|
|
||||||
|
There must be at least 3 dashes separating each header cell.
|
||||||
|
The outer pipes (|) are optional, and you don't need to make the
|
||||||
|
raw Markdown line up prettily. You can also use inline Markdown.
|
||||||
|
|
||||||
|
Markdown | Less | Pretty
|
||||||
|
--- | --- | ---
|
||||||
|
*Still* | `renders` | **nicely**
|
||||||
|
1 | 2 | 3
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Image
|
||||||
|
|
||||||
|
{{< image src="images/gallery/project-3.jpg" caption="an image caption" alt="alter-text" height="425" width="860" position="center" command="fit" option="q100" class="img-fluid" title="image title" >}}
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Youtube video
|
||||||
|
|
||||||
|
{{< youtube ResipmZmpDU >}}
|
163
content/blog/post-4.md
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
---
|
||||||
|
title: "Latter match class room"
|
||||||
|
image: "images/blog/blog-4.jpg"
|
||||||
|
date: "2022-01-04 00:00:00 +0000 UTC"
|
||||||
|
description: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec eros tellus, sceleri sque nec, rhoncus eget, sollicitudin eu,"
|
||||||
|
categories: ["class room"]
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6.
|
||||||
|
|
||||||
|
# Heading 1
|
||||||
|
## Heading 2
|
||||||
|
### Heading 3
|
||||||
|
#### Heading 4
|
||||||
|
##### Heading 5
|
||||||
|
###### Heading 6
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Emphasis
|
||||||
|
|
||||||
|
Emphasis, aka italics, with *asterisks* or _underscores_.
|
||||||
|
|
||||||
|
Strong emphasis, aka bold, with **asterisks** or __underscores__.
|
||||||
|
|
||||||
|
Combined emphasis with **asterisks and _underscores_**.
|
||||||
|
|
||||||
|
Strikethrough uses two tildes. ~~Scratch this.~~
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Link
|
||||||
|
[I'm an inline-style link](https://www.google.com)
|
||||||
|
|
||||||
|
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||||
|
|
||||||
|
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
||||||
|
|
||||||
|
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||||
|
|
||||||
|
[You can use numbers for reference-style link definitions][1]
|
||||||
|
|
||||||
|
Or leave it empty and use the [link text itself].
|
||||||
|
|
||||||
|
URLs and URLs in angle brackets will automatically get turned into links.
|
||||||
|
http://www.example.com or <http://www.example.com> and sometimes
|
||||||
|
example.com (but not on Github, for example).
|
||||||
|
|
||||||
|
Some text to show that the reference links can follow later.
|
||||||
|
|
||||||
|
[arbitrary case-insensitive reference text]: https://www.themefisher.com
|
||||||
|
[1]: https://gethugothemes.com
|
||||||
|
[link text itself]: https://www.getjekyllthemes.com
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Paragraph
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Ordered List
|
||||||
|
|
||||||
|
1. List item
|
||||||
|
2. List item
|
||||||
|
3. List item
|
||||||
|
4. List item
|
||||||
|
5. List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Unordered List
|
||||||
|
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Code and Syntax Highlighting
|
||||||
|
|
||||||
|
Inline `code` has `back-ticks around` it.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var s = "JavaScript syntax highlighting";
|
||||||
|
alert(s);
|
||||||
|
```
|
||||||
|
|
||||||
|
```python
|
||||||
|
s = "Python syntax highlighting"
|
||||||
|
print s
|
||||||
|
```
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Blockquote
|
||||||
|
|
||||||
|
> This is a blockquote example.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Inline HTML
|
||||||
|
|
||||||
|
You can also use raw HTML in your Markdown, and it'll mostly work pretty well.
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Definition list</dt>
|
||||||
|
<dd>Is something people use sometimes.</dd>
|
||||||
|
|
||||||
|
<dt>Markdown in HTML</dt>
|
||||||
|
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
{{< notice note >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice tip >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice info >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice warning >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Tables
|
||||||
|
|
||||||
|
Colons can be used to align columns.
|
||||||
|
|
||||||
|
| Tables | Are | Cool |
|
||||||
|
| ------------- |:-------------:| -----:|
|
||||||
|
| col 3 is | right-aligned | $1600 |
|
||||||
|
| col 2 is | centered | $12 |
|
||||||
|
| zebra stripes | are neat | $1 |
|
||||||
|
|
||||||
|
There must be at least 3 dashes separating each header cell.
|
||||||
|
The outer pipes (|) are optional, and you don't need to make the
|
||||||
|
raw Markdown line up prettily. You can also use inline Markdown.
|
||||||
|
|
||||||
|
Markdown | Less | Pretty
|
||||||
|
--- | --- | ---
|
||||||
|
*Still* | `renders` | **nicely**
|
||||||
|
1 | 2 | 3
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Image
|
||||||
|
|
||||||
|
{{< image src="images/gallery/project-3.jpg" caption="an image caption" alt="alter-text" height="425" width="860" position="center" command="fit" option="q100" class="img-fluid" title="image title" >}}
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Youtube video
|
||||||
|
|
||||||
|
{{< youtube ResipmZmpDU >}}
|
163
content/blog/post-5.md
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
---
|
||||||
|
title: "variation of the ordinary lor"
|
||||||
|
image: "images/blog/blog-5.jpg"
|
||||||
|
date: "2022-01-05 00:00:00 +0000 UTC"
|
||||||
|
description: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec eros tellus, sceleri sque nec, rhoncus eget, sollicitudin eu,"
|
||||||
|
categories: ["library"]
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6.
|
||||||
|
|
||||||
|
# Heading 1
|
||||||
|
## Heading 2
|
||||||
|
### Heading 3
|
||||||
|
#### Heading 4
|
||||||
|
##### Heading 5
|
||||||
|
###### Heading 6
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Emphasis
|
||||||
|
|
||||||
|
Emphasis, aka italics, with *asterisks* or _underscores_.
|
||||||
|
|
||||||
|
Strong emphasis, aka bold, with **asterisks** or __underscores__.
|
||||||
|
|
||||||
|
Combined emphasis with **asterisks and _underscores_**.
|
||||||
|
|
||||||
|
Strikethrough uses two tildes. ~~Scratch this.~~
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Link
|
||||||
|
[I'm an inline-style link](https://www.google.com)
|
||||||
|
|
||||||
|
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||||
|
|
||||||
|
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
||||||
|
|
||||||
|
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||||
|
|
||||||
|
[You can use numbers for reference-style link definitions][1]
|
||||||
|
|
||||||
|
Or leave it empty and use the [link text itself].
|
||||||
|
|
||||||
|
URLs and URLs in angle brackets will automatically get turned into links.
|
||||||
|
http://www.example.com or <http://www.example.com> and sometimes
|
||||||
|
example.com (but not on Github, for example).
|
||||||
|
|
||||||
|
Some text to show that the reference links can follow later.
|
||||||
|
|
||||||
|
[arbitrary case-insensitive reference text]: https://www.themefisher.com
|
||||||
|
[1]: https://gethugothemes.com
|
||||||
|
[link text itself]: https://www.getjekyllthemes.com
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Paragraph
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Ordered List
|
||||||
|
|
||||||
|
1. List item
|
||||||
|
2. List item
|
||||||
|
3. List item
|
||||||
|
4. List item
|
||||||
|
5. List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Unordered List
|
||||||
|
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Code and Syntax Highlighting
|
||||||
|
|
||||||
|
Inline `code` has `back-ticks around` it.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var s = "JavaScript syntax highlighting";
|
||||||
|
alert(s);
|
||||||
|
```
|
||||||
|
|
||||||
|
```python
|
||||||
|
s = "Python syntax highlighting"
|
||||||
|
print s
|
||||||
|
```
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Blockquote
|
||||||
|
|
||||||
|
> This is a blockquote example.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Inline HTML
|
||||||
|
|
||||||
|
You can also use raw HTML in your Markdown, and it'll mostly work pretty well.
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Definition list</dt>
|
||||||
|
<dd>Is something people use sometimes.</dd>
|
||||||
|
|
||||||
|
<dt>Markdown in HTML</dt>
|
||||||
|
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
{{< notice note >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice tip >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice info >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice warning >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Tables
|
||||||
|
|
||||||
|
Colons can be used to align columns.
|
||||||
|
|
||||||
|
| Tables | Are | Cool |
|
||||||
|
| ------------- |:-------------:| -----:|
|
||||||
|
| col 3 is | right-aligned | $1600 |
|
||||||
|
| col 2 is | centered | $12 |
|
||||||
|
| zebra stripes | are neat | $1 |
|
||||||
|
|
||||||
|
There must be at least 3 dashes separating each header cell.
|
||||||
|
The outer pipes (|) are optional, and you don't need to make the
|
||||||
|
raw Markdown line up prettily. You can also use inline Markdown.
|
||||||
|
|
||||||
|
Markdown | Less | Pretty
|
||||||
|
--- | --- | ---
|
||||||
|
*Still* | `renders` | **nicely**
|
||||||
|
1 | 2 | 3
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Image
|
||||||
|
|
||||||
|
{{< image src="images/gallery/project-3.jpg" caption="an image caption" alt="alter-text" height="425" width="860" position="center" command="fit" option="q100" class="img-fluid" title="image title" >}}
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Youtube video
|
||||||
|
|
||||||
|
{{< youtube ResipmZmpDU >}}
|
163
content/blog/post-6.md
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
---
|
||||||
|
title: "Testing is a great thing"
|
||||||
|
image: "images/blog/blog-3.jpg"
|
||||||
|
date: "2022-01-06 00:00:00 +0000 UTC"
|
||||||
|
description: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec eros tellus, sceleri sque nec, rhoncus eget, sollicitudin eu,"
|
||||||
|
categories: ["book rack"]
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6.
|
||||||
|
|
||||||
|
# Heading 1
|
||||||
|
## Heading 2
|
||||||
|
### Heading 3
|
||||||
|
#### Heading 4
|
||||||
|
##### Heading 5
|
||||||
|
###### Heading 6
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Emphasis
|
||||||
|
|
||||||
|
Emphasis, aka italics, with *asterisks* or _underscores_.
|
||||||
|
|
||||||
|
Strong emphasis, aka bold, with **asterisks** or __underscores__.
|
||||||
|
|
||||||
|
Combined emphasis with **asterisks and _underscores_**.
|
||||||
|
|
||||||
|
Strikethrough uses two tildes. ~~Scratch this.~~
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Link
|
||||||
|
[I'm an inline-style link](https://www.google.com)
|
||||||
|
|
||||||
|
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||||
|
|
||||||
|
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
||||||
|
|
||||||
|
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||||
|
|
||||||
|
[You can use numbers for reference-style link definitions][1]
|
||||||
|
|
||||||
|
Or leave it empty and use the [link text itself].
|
||||||
|
|
||||||
|
URLs and URLs in angle brackets will automatically get turned into links.
|
||||||
|
http://www.example.com or <http://www.example.com> and sometimes
|
||||||
|
example.com (but not on Github, for example).
|
||||||
|
|
||||||
|
Some text to show that the reference links can follow later.
|
||||||
|
|
||||||
|
[arbitrary case-insensitive reference text]: https://www.themefisher.com
|
||||||
|
[1]: https://gethugothemes.com
|
||||||
|
[link text itself]: https://www.getjekyllthemes.com
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Paragraph
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Ordered List
|
||||||
|
|
||||||
|
1. List item
|
||||||
|
2. List item
|
||||||
|
3. List item
|
||||||
|
4. List item
|
||||||
|
5. List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Unordered List
|
||||||
|
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
* List item
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Code and Syntax Highlighting
|
||||||
|
|
||||||
|
Inline `code` has `back-ticks around` it.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var s = "JavaScript syntax highlighting";
|
||||||
|
alert(s);
|
||||||
|
```
|
||||||
|
|
||||||
|
```python
|
||||||
|
s = "Python syntax highlighting"
|
||||||
|
print s
|
||||||
|
```
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Blockquote
|
||||||
|
|
||||||
|
> This is a blockquote example.
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Inline HTML
|
||||||
|
|
||||||
|
You can also use raw HTML in your Markdown, and it'll mostly work pretty well.
|
||||||
|
|
||||||
|
<dl>
|
||||||
|
<dt>Definition list</dt>
|
||||||
|
<dd>Is something people use sometimes.</dd>
|
||||||
|
|
||||||
|
<dt>Markdown in HTML</dt>
|
||||||
|
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
{{< notice note >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice tip >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice info >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
{{< notice warning >}}This is a simple note{{</ notice >}}
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Tables
|
||||||
|
|
||||||
|
Colons can be used to align columns.
|
||||||
|
|
||||||
|
| Tables | Are | Cool |
|
||||||
|
| ------------- |:-------------:| -----:|
|
||||||
|
| col 3 is | right-aligned | $1600 |
|
||||||
|
| col 2 is | centered | $12 |
|
||||||
|
| zebra stripes | are neat | $1 |
|
||||||
|
|
||||||
|
There must be at least 3 dashes separating each header cell.
|
||||||
|
The outer pipes (|) are optional, and you don't need to make the
|
||||||
|
raw Markdown line up prettily. You can also use inline Markdown.
|
||||||
|
|
||||||
|
Markdown | Less | Pretty
|
||||||
|
--- | --- | ---
|
||||||
|
*Still* | `renders` | **nicely**
|
||||||
|
1 | 2 | 3
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Image
|
||||||
|
|
||||||
|
{{< image src="images/gallery/project-3.jpg" caption="an image caption" alt="alter-text" height="425" width="860" position="center" command="fit" option="q100" class="img-fluid" title="image title" >}}
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
##### Youtube video
|
||||||
|
|
||||||
|
{{< youtube ResipmZmpDU >}}
|
5
content/project/_index.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
title: "Recent Projects"
|
||||||
|
description: ""
|
||||||
|
draft: false
|
||||||
|
---
|
44
content/project/project-1.md
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
---
|
||||||
|
title: "Book hardcover"
|
||||||
|
image: "/images/project/project-1.jpg"
|
||||||
|
date: "2022-01-01 00:00:00 +0000 UTC"
|
||||||
|
description: "Three automated reports are created for Boston EMS to indicate the details about incidents in Boston."
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Project Goal
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
When referring to Lorem ipsum, different expressions are used, namely fill text , fictitious text , blind text or placeholder text
|
||||||
|
in short, its meaning can also be zero, but its usefulness is so clear as to go through the centuries and resist the ironic
|
||||||
|
and modern versions that came with the arrival of the web.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<!-- internal link -->
|
||||||
|
{{< gallery dir="images/gallery">}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Solution
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
43
content/project/project-2.md
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
title: "Foster Youth in Ma Schools"
|
||||||
|
image: "images/project/project-2.jpg"
|
||||||
|
date: "2022-01-02 00:00:00 +0000 UTC"
|
||||||
|
description: "Indicate the layers of school issues that are impacting foster youth in Massachusetts schools."
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Project Goal
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
When referring to Lorem ipsum, different expressions are used, namely fill text , fictitious text , blind text or placeholder text
|
||||||
|
in short, its meaning can also be zero, but its usefulness is so clear as to go through the centuries and resist the ironic
|
||||||
|
and modern versions that came with the arrival of the web.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<!-- internal link -->
|
||||||
|
{{< gallery dir="images/gallery">}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Solution
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
43
content/project/project-3.md
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
title: "Book Mockup"
|
||||||
|
image: "images/project/project-3.jpg"
|
||||||
|
date: "2022-01-03 00:00:00 +0000 UTC"
|
||||||
|
description: "Machine Learning Algorithms to study the impact of different items on price and satisfaction of customers, and predict the strictness/flexibility of hosts according to their notes on Airbnb website for Airbnb listings in Boston."
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Project Goal
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
When referring to Lorem ipsum, different expressions are used, namely fill text , fictitious text , blind text or placeholder text
|
||||||
|
in short, its meaning can also be zero, but its usefulness is so clear as to go through the centuries and resist the ironic
|
||||||
|
and modern versions that came with the arrival of the web.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<!-- internal link -->
|
||||||
|
{{< gallery dir="images/gallery">}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Solution
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
43
content/project/project-4.md
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
title: "Autumn Cartoon Fun"
|
||||||
|
image: "images/project/project-4.jpg"
|
||||||
|
date: "2022-01-04 00:00:00 +0000 UTC"
|
||||||
|
description: "Defining the Airbnb quality metrics in Boston including the impact of noise disturbance, host’s policies and customer’s rating on price per night."
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Project Goal
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
When referring to Lorem ipsum, different expressions are used, namely fill text , fictitious text , blind text or placeholder text
|
||||||
|
in short, its meaning can also be zero, but its usefulness is so clear as to go through the centuries and resist the ironic
|
||||||
|
and modern versions that came with the arrival of the web.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<!-- internal link -->
|
||||||
|
{{< gallery dir="images/gallery">}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Solution
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
43
content/project/project-5.md
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
title: "Machine Learning for Airbnb Data"
|
||||||
|
image: "images/project/project-5.jpg"
|
||||||
|
date: "2022-01-05 00:00:00 +0000 UTC"
|
||||||
|
description: "Machine Learning Algorithms to study the impact of different items on price and satisfaction of customers, and predict the strictness/flexibility of hosts according to their notes on Airbnb website for Airbnb listings in Boston."
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Project Goal
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
When referring to Lorem ipsum, different expressions are used, namely fill text , fictitious text , blind text or placeholder text
|
||||||
|
in short, its meaning can also be zero, but its usefulness is so clear as to go through the centuries and resist the ironic
|
||||||
|
and modern versions that came with the arrival of the web.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<!-- internal link -->
|
||||||
|
{{< gallery dir="images/gallery">}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Solution
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
43
content/project/project-6.md
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
title: "Survey about Covid-19 in Boston"
|
||||||
|
image: "images/project/project-6.jpg"
|
||||||
|
date: "2022-01-06 00:00:00 +0000 UTC"
|
||||||
|
description: "Analyzed a survey, which captures the experiences of 1626 Bostonians during the first months of the COVID- 19 pandemic. A follow-up survey in September-November, which had 864 participants, included an item asking whether the respondent planned to receive the COVID-19 vaccine when it became available."
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Project Goal
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
When referring to Lorem ipsum, different expressions are used, namely fill text , fictitious text , blind text or placeholder text
|
||||||
|
in short, its meaning can also be zero, but its usefulness is so clear as to go through the centuries and resist the ironic
|
||||||
|
and modern versions that came with the arrival of the web.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<!-- internal link -->
|
||||||
|
{{< gallery dir="images/gallery">}}
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Solution
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisci elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea
|
||||||
|
commodi consequatur. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
26
go.mod
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
module gethugothemes.com
|
||||||
|
|
||||||
|
go 1.18
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/components/crisp-chat v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/components/valine-comment v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/images v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/codepen v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/tab v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gethugothemes/hugo-modules/videos v0.0.0-20240925042433-d2b5d05977e8 // indirect
|
||||||
|
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 // indirect
|
||||||
|
)
|
80
go.sum
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20240711030223-49ae4a26e064 h1:U5GwHE9Mh47MW08V0T7F+tvlcdDvRtT75WBzVuCzzuA=
|
||||||
|
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20240711030223-49ae4a26e064/go.mod h1:D4DpauKPDcUHI9CVKYmJeO6bkSJIhUN864TyXZ2o0VI=
|
||||||
|
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20240925042433-d2b5d05977e8 h1:glx/9W1+SUOc3YQROIA59CBr6myIo3gzsJysJJaQe/A=
|
||||||
|
github.com/gethugothemes/hugo-modules/accordion v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:D4DpauKPDcUHI9CVKYmJeO6bkSJIhUN864TyXZ2o0VI=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20240711030223-49ae4a26e064 h1:4a5nmIXZvjpVTMJzCyWnGqr6PKsVNAKaBB+1hcOTRDs=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20240711030223-49ae4a26e064/go.mod h1:511ERLpGe3ZTfV2z/NAtUSR5NqKF26h9z5lU/zYV4YQ=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20240925042433-d2b5d05977e8 h1:oIO0o2wdY2Jhkz+NyzTgwizCGSf6V0IGumuD985SKeU=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/cookie-consent v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:511ERLpGe3ZTfV2z/NAtUSR5NqKF26h9z5lU/zYV4YQ=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/crisp-chat v0.0.0-20240711030223-49ae4a26e064 h1:pohTW6fMSpG4Jpwn+KbGy0PP6kFJdxHSuen72E6GnhM=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/crisp-chat v0.0.0-20240711030223-49ae4a26e064/go.mod h1:qiV/PIeVY59RD2W885rFWc7b62uovQZO6VPFHeP5LT0=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/crisp-chat v0.0.0-20240925042433-d2b5d05977e8 h1:6kmR95oBWLIPXMQ9BC8qdwEg3NfuQOuOE1gMJnH09t8=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/crisp-chat v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:qiV/PIeVY59RD2W885rFWc7b62uovQZO6VPFHeP5LT0=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20240711030223-49ae4a26e064 h1:RIUljJ3ILueXWzQJrgpd42SZ+CC73rBSLR9LbGJTyVc=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20240711030223-49ae4a26e064/go.mod h1:z3YcIeEBUonAoRDY1/Jv1ojNVkZ5ud35a0Nn8L4Inx0=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20240925042433-d2b5d05977e8 h1:mK0hf8QyPHHT+vYTnAJ23R8S0oudNluyQ8N24Gg3Buk=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/render-link v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:z3YcIeEBUonAoRDY1/Jv1ojNVkZ5ud35a0Nn8L4Inx0=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/valine-comment v0.0.0-20240711030223-49ae4a26e064 h1:dE9KPG/CGroRLpjrEsUesMYKi5w43kLNbFpsn/BDCfU=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/valine-comment v0.0.0-20240711030223-49ae4a26e064/go.mod h1:fqeY2MbVoFf9OB8dtyJTnfNNa3qChIX9wsY32VVBYrQ=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/valine-comment v0.0.0-20240925042433-d2b5d05977e8 h1:xhMTrj/8upliBaKqU4PCtS/LC2Fpk44XcPClpLIpINk=
|
||||||
|
github.com/gethugothemes/hugo-modules/components/valine-comment v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:fqeY2MbVoFf9OB8dtyJTnfNNa3qChIX9wsY32VVBYrQ=
|
||||||
|
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20240711030223-49ae4a26e064 h1:ApV/xWY4XiWSBbhP6yYYHwuWwRfnf1MlQfGLJt+LGys=
|
||||||
|
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20240711030223-49ae4a26e064/go.mod h1:MvQ2js/ofZ22CTX5wuvE+dC0rMe6C5HAWL2fEOu/yzE=
|
||||||
|
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20240925042433-d2b5d05977e8 h1:/2gTKMuTvHO+PoZ7H6SGBHB8vtCaFi6lttfBtY74i3E=
|
||||||
|
github.com/gethugothemes/hugo-modules/gallery-slider v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:MvQ2js/ofZ22CTX5wuvE+dC0rMe6C5HAWL2fEOu/yzE=
|
||||||
|
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20240711030223-49ae4a26e064 h1:FI6uqBGCFMurqg82pngRNIBkk9PDgrRooMYVxupCWrY=
|
||||||
|
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20240711030223-49ae4a26e064/go.mod h1:0ZMjTZVG4XLZU2/icc8Saqo4mmgMpfRTrUZU2Aa2Pwg=
|
||||||
|
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20240925042433-d2b5d05977e8 h1:5/R8j8xG2tvH6bsBrrF1zG6JdBxzzGf7ITlgysgteI0=
|
||||||
|
github.com/gethugothemes/hugo-modules/gzip-caching v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:0ZMjTZVG4XLZU2/icc8Saqo4mmgMpfRTrUZU2Aa2Pwg=
|
||||||
|
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20240711030223-49ae4a26e064 h1:MktfbqJjqdz/ASDrsla/k30JpwBho5mPkvNh2V5vAxk=
|
||||||
|
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20240711030223-49ae4a26e064/go.mod h1:d3gy1vQyfasPmGpau7HpQLrXbOv23PfXclSnjyOBxeU=
|
||||||
|
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20240925042433-d2b5d05977e8 h1:h2xHThbg1laJN6t2+bMr6dIAcD/b0IXBWOp+kJlzJec=
|
||||||
|
github.com/gethugothemes/hugo-modules/icons/font-awesome v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:d3gy1vQyfasPmGpau7HpQLrXbOv23PfXclSnjyOBxeU=
|
||||||
|
github.com/gethugothemes/hugo-modules/images v0.0.0-20240711030223-49ae4a26e064 h1:sq+AZRYnPTluvUsrbdnjyFEJKKl7UmTmKYJvW2cqfEs=
|
||||||
|
github.com/gethugothemes/hugo-modules/images v0.0.0-20240711030223-49ae4a26e064/go.mod h1:FKliP3qOW9diIcQeLtyZ0Hdhg3PL8bdAkC/6O+XtU90=
|
||||||
|
github.com/gethugothemes/hugo-modules/images v0.0.0-20240925042433-d2b5d05977e8 h1:rGWMqcpmotd5G+q5HS9p9sC4GQF2hMxEesuJx8aKvKE=
|
||||||
|
github.com/gethugothemes/hugo-modules/images v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:FKliP3qOW9diIcQeLtyZ0Hdhg3PL8bdAkC/6O+XtU90=
|
||||||
|
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20240711030223-49ae4a26e064 h1:ZOK8wNGzUYqu1aPEq4wDfYCKCXjtlm2ncPfrdIFm/HY=
|
||||||
|
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20240711030223-49ae4a26e064/go.mod h1:TRv7iszdfo37O1PbBEE+S8X/enAdpRIxK5DGrp13Qbo=
|
||||||
|
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20240925042433-d2b5d05977e8 h1:cTObVCZAxl/yW2oVH3FVmg8npXqLWRemuJjXHnnTq0Y=
|
||||||
|
github.com/gethugothemes/hugo-modules/pwa v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:TRv7iszdfo37O1PbBEE+S8X/enAdpRIxK5DGrp13Qbo=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20240711030223-49ae4a26e064 h1:T8IWW2fGT3ldco08QmQLHrIgr8mnSCfjQjfXWLqMKx4=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20240711030223-49ae4a26e064/go.mod h1:Q8dPgjamV7pxwKSQyWV21Xwh5CGi23/k+M8HPTphYbs=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20240925042433-d2b5d05977e8 h1:cyhgsUNA0Kr172aab/Iy/K11KODP/lTzlOxuNY497vA=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/basic-seo v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:Q8dPgjamV7pxwKSQyWV21Xwh5CGi23/k+M8HPTphYbs=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20240711030223-49ae4a26e064 h1:iW1Sy/bMsWILaUHTC/IlykLuRXwe4Y6f0hoWum/+rRI=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20240711030223-49ae4a26e064/go.mod h1:cCq50yd55eFTrpqOfeyOK5X0hU5E7qxsqOD7IzTsgLA=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20240925042433-d2b5d05977e8 h1:WDiOV7iyIFGAUwQzDojoYSayovskKB3mPxm11mf99F4=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/google-tag-manager v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:cCq50yd55eFTrpqOfeyOK5X0hU5E7qxsqOD7IzTsgLA=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20240711030223-49ae4a26e064 h1:n8042lNE/tP8WL4lDNlSk+cROIj9x8SkM87iB7eWu7U=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20240711030223-49ae4a26e064/go.mod h1:iXielaya126qJscz7Bc2G2WB91moloQOoWru6UoBUyE=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20240925042433-d2b5d05977e8 h1:qlKzcEIQqvbw+q+7RynsqSMVSQ/UafD5Xe3B9A7VMF0=
|
||||||
|
github.com/gethugothemes/hugo-modules/seo-tools/site-verifications v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:iXielaya126qJscz7Bc2G2WB91moloQOoWru6UoBUyE=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20240711030223-49ae4a26e064 h1:v50bOrhK6GH8n1o4B3ZdmfaEP/MqtO8pPCWEz896ATk=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20240711030223-49ae4a26e064/go.mod h1:MSvxGvjvcGUKTs6YMATU/9kYFrzW+VSVdy4CCOQLdsY=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20240925042433-d2b5d05977e8 h1:lugKYn6GRv4MVCC1vDJwm94Y6r2eq1CCxwMfK/ha51I=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/button v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:MSvxGvjvcGUKTs6YMATU/9kYFrzW+VSVdy4CCOQLdsY=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/codepen v0.0.0-20240711030223-49ae4a26e064 h1:JxX6umI/+qEWQ/d9gZ2UhXSWTqAmUplJJ53H3JugH7c=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/codepen v0.0.0-20240711030223-49ae4a26e064/go.mod h1:Y4eAJ7fkCSC6k6fl1+qF4DIoRepAYyB9Om4kBCAixcg=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/codepen v0.0.0-20240925042433-d2b5d05977e8 h1:NayJdgpxNzGKmlWHDEH/Wob3u5JAh+/dsHdUcsdMOsM=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/codepen v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:Y4eAJ7fkCSC6k6fl1+qF4DIoRepAYyB9Om4kBCAixcg=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20240711030223-49ae4a26e064 h1:/tols8b0J9XEEBK/b2wgLCcnpxgz7ta9Capo1KdcEHY=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20240711030223-49ae4a26e064/go.mod h1:ljWyMJx82WA+6SlKjbGFhEdxcriyvUTCjXkJHDa4lho=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20240925042433-d2b5d05977e8 h1:OODdhrS3Fy9GTGvKzk704NfwR4p+1s4ymVrCPEGct1o=
|
||||||
|
github.com/gethugothemes/hugo-modules/shortcodes/notice v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:ljWyMJx82WA+6SlKjbGFhEdxcriyvUTCjXkJHDa4lho=
|
||||||
|
github.com/gethugothemes/hugo-modules/tab v0.0.0-20240711030223-49ae4a26e064 h1:FpNjTC43ARFweEBZvgZGKwFkPj63PLKUB2mWZ6/mlxg=
|
||||||
|
github.com/gethugothemes/hugo-modules/tab v0.0.0-20240711030223-49ae4a26e064/go.mod h1:h3UxlxrFoU19JldxWLPBKaTZFe3AJtABrqo1wfxr+Ng=
|
||||||
|
github.com/gethugothemes/hugo-modules/tab v0.0.0-20240925042433-d2b5d05977e8 h1:/CjcG8HFYt6ROy9jLpikozjVAQngN0gnVsw/Jbs8lCg=
|
||||||
|
github.com/gethugothemes/hugo-modules/tab v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:h3UxlxrFoU19JldxWLPBKaTZFe3AJtABrqo1wfxr+Ng=
|
||||||
|
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20240711030223-49ae4a26e064 h1:Ve+eb3GerUXdVpH6pw5BeodDK7gf5J5fDhncDN6MvYw=
|
||||||
|
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20240711030223-49ae4a26e064/go.mod h1:bEDw4veccQQQYEdVrfu13ATRUWfW8ptDIjJZuhYh4Tw=
|
||||||
|
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20240925042433-d2b5d05977e8 h1:XWwrpOhUvsr3Pww1GQHo9K6RFCAUh/PvkQnIyRMy5Hc=
|
||||||
|
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:bEDw4veccQQQYEdVrfu13ATRUWfW8ptDIjJZuhYh4Tw=
|
||||||
|
github.com/gethugothemes/hugo-modules/videos v0.0.0-20240711030223-49ae4a26e064 h1:qOz8NRnfaCHkS/KoNT+sc4cPt0SuN19/Sss9WD8ouqA=
|
||||||
|
github.com/gethugothemes/hugo-modules/videos v0.0.0-20240711030223-49ae4a26e064/go.mod h1:P722lLWdnNhdZVq6gvMrOLqECUwrAYQWaOWlChta5H0=
|
||||||
|
github.com/gethugothemes/hugo-modules/videos v0.0.0-20240925042433-d2b5d05977e8 h1:0nNuE80/NDYplmQPj0lB0O5xUUdC13qHnxcaMOOul9E=
|
||||||
|
github.com/gethugothemes/hugo-modules/videos v0.0.0-20240925042433-d2b5d05977e8/go.mod h1:P722lLWdnNhdZVq6gvMrOLqECUwrAYQWaOWlChta5H0=
|
||||||
|
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 h1:SmpwwN3DNzJWbV+IT8gaFu07ENUFpCvKou5BHYUKuVs=
|
||||||
|
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200/go.mod h1:kx8MBj9T7SFR8ZClWvKZPmmUxBaltkoXvnWlZZcSnYA=
|
||||||
|
github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2 v2.21100.20000/go.mod h1:mFberT6ZtcchrsDtfvJM7aAH2bDKLdOnruUHl0hlapI=
|
||||||
|
github.com/twbs/bootstrap v5.3.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
|
85
hugo.toml
@ -1,3 +1,82 @@
|
|||||||
baseURL = 'https://example.org/'
|
# This file is for render site varibles and plugins
|
||||||
languageCode = 'en-us'
|
# don't remove this file.
|
||||||
title = 'My New Hugo Site'
|
# The presence of this file is for compatibility with Blogdown and Forestry.
|
||||||
|
#
|
||||||
|
# The actual configuration files are stored in the `config/_default/` folder.
|
||||||
|
|
||||||
|
|
||||||
|
######################### site variables ##############################
|
||||||
|
# customize your color and font from here.
|
||||||
|
[params.variables]
|
||||||
|
color_primary = "#18b0a2"
|
||||||
|
color_secondary = "#151923"
|
||||||
|
body_color = "#0e1015"
|
||||||
|
text_color = "#bbb"
|
||||||
|
text_dark = "#222222"
|
||||||
|
text_light = "#959595"
|
||||||
|
border_color = "rgba($color-primary, 0.15)"
|
||||||
|
|
||||||
|
light_body_color = "#FFFFFF"
|
||||||
|
light_text_color = "#555"
|
||||||
|
light_border_color = "#ddd"
|
||||||
|
light_color_secondary = "#f6f6f6"
|
||||||
|
light_text_light = "#959595"
|
||||||
|
light_text_dark = "#222222"
|
||||||
|
|
||||||
|
black = "#191f27"
|
||||||
|
white = "#fff"
|
||||||
|
dark = "#222"
|
||||||
|
light = "#eee"
|
||||||
|
|
||||||
|
# font variables
|
||||||
|
# base font size for full website,
|
||||||
|
font_size = "16px" # default is 16px
|
||||||
|
|
||||||
|
# Font Scale Sizes
|
||||||
|
# "minorSecond": 1.067,
|
||||||
|
# "majorSecond": 1.125,
|
||||||
|
# "minorThird": 1.2,
|
||||||
|
# "majorThird": 1.25,
|
||||||
|
# "perfectFourth": 1.333,
|
||||||
|
# "augmentedFourth": 1.414,
|
||||||
|
# "perfectFifth": 1.5,
|
||||||
|
# "goldenRatio": 1.618
|
||||||
|
font_scale = "1.26" # default is "majorThird": 1.25
|
||||||
|
|
||||||
|
# go to https://fonts.google.com/ to find the font you want to use. select your font and copy only the bold part from the URL. and paste it here.
|
||||||
|
# example: "Work+Sans:wght@400;500;600"
|
||||||
|
font_primary = "Poppins:wght@200;300;400;500;600"
|
||||||
|
font_primary_type = "sans-serif" # [serif/sans-serif]
|
||||||
|
font_secondary = ""
|
||||||
|
font_secondary_type = "" # [serif/sans-serif]
|
||||||
|
font_icon = "Font Awesome 6 Free" # https://fontawesome.com/v6.0/icons/
|
||||||
|
|
||||||
|
|
||||||
|
############################# Plugins ##############################
|
||||||
|
|
||||||
|
# CSS Plugins
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/font-awesome/v6/brands.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/font-awesome/v6/solid.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/font-awesome/v6/icons.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/glightbox/glightbox.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/aos/aos.custom.css"
|
||||||
|
|
||||||
|
# JS Plugins
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/webfont/webfont-loader-2.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/glightbox/glightbox.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "js/gallery-slider.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/cookie.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/aos/aos.js"
|
||||||
|
# [[params.plugins.js]]
|
||||||
|
# link = "https://cpwebassets.codepen.io/assets/embed/ei.js"
|
||||||
|
# attributes = "async"
|
||||||
|
305
hugo_stats.json
Normal file
@ -0,0 +1,305 @@
|
|||||||
|
{
|
||||||
|
"htmlElements": {
|
||||||
|
"tags": [
|
||||||
|
"a",
|
||||||
|
"article",
|
||||||
|
"aside",
|
||||||
|
"base",
|
||||||
|
"blockquote",
|
||||||
|
"body",
|
||||||
|
"br",
|
||||||
|
"button",
|
||||||
|
"code",
|
||||||
|
"dd",
|
||||||
|
"del",
|
||||||
|
"div",
|
||||||
|
"dl",
|
||||||
|
"dt",
|
||||||
|
"em",
|
||||||
|
"figcaption",
|
||||||
|
"figure",
|
||||||
|
"footer",
|
||||||
|
"form",
|
||||||
|
"h1",
|
||||||
|
"h2",
|
||||||
|
"h3",
|
||||||
|
"h4",
|
||||||
|
"h5",
|
||||||
|
"h6",
|
||||||
|
"head",
|
||||||
|
"hr",
|
||||||
|
"html",
|
||||||
|
"i",
|
||||||
|
"iframe",
|
||||||
|
"img",
|
||||||
|
"input",
|
||||||
|
"label",
|
||||||
|
"li",
|
||||||
|
"link",
|
||||||
|
"main",
|
||||||
|
"meta",
|
||||||
|
"nav",
|
||||||
|
"ol",
|
||||||
|
"p",
|
||||||
|
"path",
|
||||||
|
"picture",
|
||||||
|
"pre",
|
||||||
|
"script",
|
||||||
|
"section",
|
||||||
|
"small",
|
||||||
|
"source",
|
||||||
|
"span",
|
||||||
|
"strong",
|
||||||
|
"svg",
|
||||||
|
"table",
|
||||||
|
"tbody",
|
||||||
|
"td",
|
||||||
|
"textarea",
|
||||||
|
"th",
|
||||||
|
"thead",
|
||||||
|
"title",
|
||||||
|
"tr",
|
||||||
|
"ul"
|
||||||
|
],
|
||||||
|
"classes": [
|
||||||
|
"additional-info",
|
||||||
|
"align-items-center",
|
||||||
|
"align-items-start",
|
||||||
|
"back-to-top",
|
||||||
|
"bg-dark",
|
||||||
|
"bg-primary-soft",
|
||||||
|
"bg-shape",
|
||||||
|
"bg-transparent",
|
||||||
|
"blog-post",
|
||||||
|
"blog-wrapper",
|
||||||
|
"border",
|
||||||
|
"border-0",
|
||||||
|
"btn",
|
||||||
|
"btn-outline-primary",
|
||||||
|
"btn-primary",
|
||||||
|
"caption-an-image-caption",
|
||||||
|
"card",
|
||||||
|
"card-body",
|
||||||
|
"card-btn",
|
||||||
|
"card-text",
|
||||||
|
"card-title",
|
||||||
|
"col-12",
|
||||||
|
"col-lg-10",
|
||||||
|
"col-lg-12",
|
||||||
|
"col-lg-4",
|
||||||
|
"col-lg-6",
|
||||||
|
"col-lg-8",
|
||||||
|
"col-md-6",
|
||||||
|
"col-sm-6",
|
||||||
|
"col-xl-5",
|
||||||
|
"col-xl-7",
|
||||||
|
"col-xxl-10",
|
||||||
|
"col-xxl-11",
|
||||||
|
"col-xxl-5",
|
||||||
|
"col-xxl-6",
|
||||||
|
"container",
|
||||||
|
"content",
|
||||||
|
"copyright-info",
|
||||||
|
"d-block",
|
||||||
|
"d-flex",
|
||||||
|
"d-inline-block",
|
||||||
|
"d-lg-block",
|
||||||
|
"d-none",
|
||||||
|
"d-xl-none",
|
||||||
|
"d-xxl-block",
|
||||||
|
"divider",
|
||||||
|
"fa",
|
||||||
|
"fa-address-card",
|
||||||
|
"fa-angle-right",
|
||||||
|
"fa-angle-up",
|
||||||
|
"fa-arrow-right-long",
|
||||||
|
"fa-backward",
|
||||||
|
"fa-blog",
|
||||||
|
"fa-box",
|
||||||
|
"fa-brands",
|
||||||
|
"fa-building-columns",
|
||||||
|
"fa-calendar-days",
|
||||||
|
"fa-download",
|
||||||
|
"fa-envelope",
|
||||||
|
"fa-facebook",
|
||||||
|
"fa-folder-open",
|
||||||
|
"fa-graduation-cap",
|
||||||
|
"fa-instagram",
|
||||||
|
"fa-laptop-code",
|
||||||
|
"fa-linkedin",
|
||||||
|
"fa-list-check",
|
||||||
|
"fa-location-dot",
|
||||||
|
"fa-palette",
|
||||||
|
"fa-paper-plane",
|
||||||
|
"fa-pen-ruler",
|
||||||
|
"fa-person-chalkboard",
|
||||||
|
"fa-phone-volume",
|
||||||
|
"fa-solid",
|
||||||
|
"fa-twitter",
|
||||||
|
"fa-user",
|
||||||
|
"featured-image",
|
||||||
|
"flex-column",
|
||||||
|
"flex-lg-nowrap",
|
||||||
|
"flex-wrap",
|
||||||
|
"form-control",
|
||||||
|
"form-label",
|
||||||
|
"fs-4",
|
||||||
|
"fw-light",
|
||||||
|
"fw-medium",
|
||||||
|
"fw-normal",
|
||||||
|
"fw-semibold",
|
||||||
|
"gallery",
|
||||||
|
"gallery-item",
|
||||||
|
"gap-3",
|
||||||
|
"gap-4",
|
||||||
|
"gap-5",
|
||||||
|
"gx-md-5",
|
||||||
|
"gx-xxl-5",
|
||||||
|
"gy-4",
|
||||||
|
"gy-5",
|
||||||
|
"gy-xxl-0",
|
||||||
|
"h-100",
|
||||||
|
"h3",
|
||||||
|
"h4",
|
||||||
|
"h5",
|
||||||
|
"hidden",
|
||||||
|
"highlight",
|
||||||
|
"icon",
|
||||||
|
"image-block",
|
||||||
|
"img",
|
||||||
|
"img-center",
|
||||||
|
"img-fluid",
|
||||||
|
"info",
|
||||||
|
"justify-content-between",
|
||||||
|
"justify-content-center",
|
||||||
|
"lazy",
|
||||||
|
"lead",
|
||||||
|
"line--1",
|
||||||
|
"line--2",
|
||||||
|
"line--3",
|
||||||
|
"list-inline",
|
||||||
|
"list-inline-item",
|
||||||
|
"mb-0",
|
||||||
|
"mb-2",
|
||||||
|
"mb-3",
|
||||||
|
"mb-4",
|
||||||
|
"mb-5",
|
||||||
|
"me-2",
|
||||||
|
"me-3",
|
||||||
|
"me-5",
|
||||||
|
"meta-link",
|
||||||
|
"ms-2",
|
||||||
|
"ms-3",
|
||||||
|
"mt-1",
|
||||||
|
"mt-2",
|
||||||
|
"mt-4",
|
||||||
|
"mt-5",
|
||||||
|
"mt-auto",
|
||||||
|
"mx-auto",
|
||||||
|
"my-4",
|
||||||
|
"nav-item",
|
||||||
|
"nav-link",
|
||||||
|
"navbar-nav",
|
||||||
|
"navbar-toggler",
|
||||||
|
"navigation",
|
||||||
|
"note",
|
||||||
|
"notice",
|
||||||
|
"notice-body",
|
||||||
|
"notice-head",
|
||||||
|
"opacity-100",
|
||||||
|
"overflow-hidden",
|
||||||
|
"p-0",
|
||||||
|
"p-1",
|
||||||
|
"p-2",
|
||||||
|
"p-3",
|
||||||
|
"p-4",
|
||||||
|
"pb-1",
|
||||||
|
"pb-2",
|
||||||
|
"pb-3",
|
||||||
|
"pb-4",
|
||||||
|
"pb-5",
|
||||||
|
"pe-3",
|
||||||
|
"position-fixed",
|
||||||
|
"position-relative",
|
||||||
|
"post-meta",
|
||||||
|
"progress",
|
||||||
|
"progress-bar",
|
||||||
|
"progress-item",
|
||||||
|
"progress-value",
|
||||||
|
"project-item",
|
||||||
|
"projects",
|
||||||
|
"ps-0",
|
||||||
|
"ps-lg-4",
|
||||||
|
"ps-xxl-4",
|
||||||
|
"pt-0",
|
||||||
|
"pt-1",
|
||||||
|
"pt-2",
|
||||||
|
"pt-4",
|
||||||
|
"px-0",
|
||||||
|
"px-2",
|
||||||
|
"px-lg-0",
|
||||||
|
"px-xl-4",
|
||||||
|
"py-1",
|
||||||
|
"py-4",
|
||||||
|
"rounded",
|
||||||
|
"rounded-1",
|
||||||
|
"rounded-2",
|
||||||
|
"rounded-3",
|
||||||
|
"rounded-circle",
|
||||||
|
"row",
|
||||||
|
"section",
|
||||||
|
"section-title",
|
||||||
|
"small",
|
||||||
|
"social-links",
|
||||||
|
"text-capitalize",
|
||||||
|
"text-center",
|
||||||
|
"text-lg-center",
|
||||||
|
"text-primary",
|
||||||
|
"text-start",
|
||||||
|
"text-white",
|
||||||
|
"theme-switcher",
|
||||||
|
"tip",
|
||||||
|
"top-0",
|
||||||
|
"vh-100",
|
||||||
|
"w-100",
|
||||||
|
"w-auto",
|
||||||
|
"warning"
|
||||||
|
],
|
||||||
|
"ids": [
|
||||||
|
"banner",
|
||||||
|
"blockquote",
|
||||||
|
"blog",
|
||||||
|
"caption-an image caption",
|
||||||
|
"code-and-syntax-highlighting",
|
||||||
|
"contact",
|
||||||
|
"email",
|
||||||
|
"emphasis",
|
||||||
|
"firstName",
|
||||||
|
"heading-1",
|
||||||
|
"heading-2",
|
||||||
|
"heading-3",
|
||||||
|
"heading-4",
|
||||||
|
"heading-5",
|
||||||
|
"heading-6",
|
||||||
|
"image",
|
||||||
|
"inline-html",
|
||||||
|
"lastName",
|
||||||
|
"link",
|
||||||
|
"message",
|
||||||
|
"navbar",
|
||||||
|
"ordered-list",
|
||||||
|
"paragraph",
|
||||||
|
"phone",
|
||||||
|
"portfolio",
|
||||||
|
"project-goal",
|
||||||
|
"resume",
|
||||||
|
"sidebarContent",
|
||||||
|
"skill",
|
||||||
|
"solution",
|
||||||
|
"tables",
|
||||||
|
"toggler",
|
||||||
|
"unordered-list",
|
||||||
|
"youtube-video"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
36
postcss.config.js
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
const purgecss = require("@fullhuman/postcss-purgecss")({
|
||||||
|
content: ["./hugo_stats.json"],
|
||||||
|
defaultExtractor: (content) => {
|
||||||
|
const els = JSON.parse(content).htmlElements;
|
||||||
|
return [...(els.tags || []), ...(els.classes || []), ...(els.ids || [])];
|
||||||
|
},
|
||||||
|
safelist: [
|
||||||
|
/dark/,
|
||||||
|
/^swiper-/,
|
||||||
|
/^aos-/,
|
||||||
|
/collapsing/,
|
||||||
|
/show/,
|
||||||
|
/[aria-expanded=true]/,
|
||||||
|
/[aria-expanded=false]/,
|
||||||
|
/^lb-/,
|
||||||
|
/^gl/,
|
||||||
|
/^go/,
|
||||||
|
/^gc/,
|
||||||
|
/^gs/,
|
||||||
|
/^gi/,
|
||||||
|
/^desc/,
|
||||||
|
/^zoom/,
|
||||||
|
/dragging/,
|
||||||
|
/fullscreen/,
|
||||||
|
/loaded/,
|
||||||
|
/visible/,
|
||||||
|
/current/,
|
||||||
|
/active/,
|
||||||
|
],
|
||||||
|
});
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
plugins: [
|
||||||
|
...(process.env.HUGO_ENVIRONMENT === "production" ? [purgecss] : []),
|
||||||
|
],
|
||||||
|
};
|
88
public/.htaccess
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
##### Optimize default expiration time - BEGIN
|
||||||
|
<IfModule mod_expires.c>
|
||||||
|
|
||||||
|
## Enable expiration control
|
||||||
|
ExpiresActive On
|
||||||
|
|
||||||
|
## CSS and JS expiration: 1 week after request
|
||||||
|
ExpiresByType text/css "now plus 1 week"
|
||||||
|
ExpiresByType application/javascript "now plus 1 week"
|
||||||
|
ExpiresByType application/x-javascript "now plus 1 week"
|
||||||
|
|
||||||
|
## Image files expiration: 1 month after request
|
||||||
|
ExpiresByType image/bmp "now plus 1 month"
|
||||||
|
ExpiresByType image/gif "now plus 1 month"
|
||||||
|
ExpiresByType image/jpeg "now plus 1 month"
|
||||||
|
ExpiresByType image/webp "now plus 1 month"
|
||||||
|
ExpiresByType image/jp2 "now plus 1 month"
|
||||||
|
ExpiresByType image/pipeg "now plus 1 month"
|
||||||
|
ExpiresByType image/png "now plus 1 month"
|
||||||
|
ExpiresByType image/svg+xml "now plus 1 month"
|
||||||
|
ExpiresByType image/tiff "now plus 1 month"
|
||||||
|
ExpiresByType image/x-icon "now plus 1 month"
|
||||||
|
ExpiresByType image/ico "now plus 1 month"
|
||||||
|
ExpiresByType image/icon "now plus 1 month"
|
||||||
|
ExpiresByType text/ico "now plus 1 month"
|
||||||
|
ExpiresByType application/ico "now plus 1 month"
|
||||||
|
ExpiresByType image/vnd.wap.wbmp "now plus 1 month"
|
||||||
|
|
||||||
|
## Font files expiration: 1 month after request
|
||||||
|
ExpiresByType application/x-font-ttf "now plus 1 month"
|
||||||
|
ExpiresByType application/x-font-opentype "now plus 1 month"
|
||||||
|
ExpiresByType application/x-font-woff "now plus 1 month"
|
||||||
|
ExpiresByType font/woff2 "now plus 1 month"
|
||||||
|
ExpiresByType image/svg+xml "now plus 1 month"
|
||||||
|
|
||||||
|
## Audio files expiration: 1 month after request
|
||||||
|
ExpiresByType audio/ogg "now plus 1 month"
|
||||||
|
ExpiresByType application/ogg "now plus 1 month"
|
||||||
|
ExpiresByType audio/basic "now plus 1 month"
|
||||||
|
ExpiresByType audio/mid "now plus 1 month"
|
||||||
|
ExpiresByType audio/midi "now plus 1 month"
|
||||||
|
ExpiresByType audio/mpeg "now plus 1 month"
|
||||||
|
ExpiresByType audio/mp3 "now plus 1 month"
|
||||||
|
ExpiresByType audio/x-aiff "now plus 1 month"
|
||||||
|
ExpiresByType audio/x-mpegurl "now plus 1 month"
|
||||||
|
ExpiresByType audio/x-pn-realaudio "now plus 1 month"
|
||||||
|
ExpiresByType audio/x-wav "now plus 1 month"
|
||||||
|
|
||||||
|
## Movie files expiration: 1 month after request
|
||||||
|
ExpiresByType application/x-shockwave-flash "now plus 1 month"
|
||||||
|
ExpiresByType x-world/x-vrml "now plus 1 month"
|
||||||
|
ExpiresByType video/x-msvideo "now plus 1 month"
|
||||||
|
ExpiresByType video/mpeg "now plus 1 month"
|
||||||
|
ExpiresByType video/mp4 "now plus 1 month"
|
||||||
|
ExpiresByType video/quicktime "now plus 1 month"
|
||||||
|
ExpiresByType video/x-la-asf "now plus 1 month"
|
||||||
|
ExpiresByType video/x-ms-asf "now plus 1 month"
|
||||||
|
</IfModule>
|
||||||
|
##### Optimize default expiration time - END
|
||||||
|
|
||||||
|
##### 1 Month for most static resources
|
||||||
|
<filesMatch ".(css|jpg|jpeg|png|webp|gif|js|ico|woff|woff2|eot|ttf)$">
|
||||||
|
Header set Cache-Control "public, max-age=31536000, immutable"
|
||||||
|
</filesMatch>
|
||||||
|
|
||||||
|
##### Enable gzip compression for resources
|
||||||
|
<ifModule mod_gzip.c>
|
||||||
|
mod_gzip_on Yes
|
||||||
|
mod_gzip_dechunk Yes
|
||||||
|
mod_gzip_item_include file .(html?|txt|css|js|php)$
|
||||||
|
mod_gzip_item_include handler ^cgi-script$
|
||||||
|
mod_gzip_item_include mime ^text/.*
|
||||||
|
mod_gzip_item_include mime ^application/x-javascript.*
|
||||||
|
mod_gzip_item_exclude mime ^image/.*
|
||||||
|
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
|
||||||
|
</ifModule>
|
||||||
|
|
||||||
|
##### Or, compress certain file types by extension:
|
||||||
|
<FilesMatch ".(html|css|jpg|jpeg|webp|png|gif|js|ico)">
|
||||||
|
SetOutputFilter DEFLATE
|
||||||
|
</FilesMatch>
|
||||||
|
|
||||||
|
##### Set Header Vary: Accept-Encoding
|
||||||
|
<IfModule mod_headers.c>
|
||||||
|
<FilesMatch ".(js|css|xml|gz|html)$">
|
||||||
|
Header append Vary: Accept-Encoding
|
||||||
|
</FilesMatch>
|
||||||
|
</IfModule>
|
9203
public/404.html
Normal file
9981
public/blog/index.html
Normal file
54
public/blog/index.xml
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Recent Articles on Professors - Personal Portfolio Theme</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/</link>
|
||||||
|
<description>Recent content in Recent Articles on Professors - Personal Portfolio Theme</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Thu, 06 Jan 2022 00:00:00 +0000</lastBuildDate>
|
||||||
|
<atom:link href="http://localhost:1313/professors/site/blog/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Testing is a great thing</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-6/</link>
|
||||||
|
<pubDate>Thu, 06 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-6/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>variation of the ordinary lor</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-5/</link>
|
||||||
|
<pubDate>Wed, 05 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-5/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Latter match class room</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-4/</link>
|
||||||
|
<pubDate>Tue, 04 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-4/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>In publishing and graphic desi</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-3/</link>
|
||||||
|
<pubDate>Mon, 03 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-3/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>New Friends Everyday at Kiddie</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-2/</link>
|
||||||
|
<pubDate>Sun, 02 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-2/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Publishing and graphic desi</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-1/</link>
|
||||||
|
<pubDate>Sat, 01 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-1/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
9744
public/blog/post-1/index.html
Normal file
9740
public/blog/post-2/index.html
Normal file
9740
public/blog/post-3/index.html
Normal file
9740
public/blog/post-4/index.html
Normal file
9740
public/blog/post-5/index.html
Normal file
9740
public/blog/post-6/index.html
Normal file
9469
public/categories/book-rack/index.html
Normal file
26
public/categories/book-rack/index.xml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Book Rack on Professors - Personal Portfolio Theme</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/book-rack/</link>
|
||||||
|
<description>Recent content in Book Rack on Professors - Personal Portfolio Theme</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Thu, 06 Jan 2022 00:00:00 +0000</lastBuildDate>
|
||||||
|
<atom:link href="http://localhost:1313/professors/site/categories/book-rack/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Testing is a great thing</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-6/</link>
|
||||||
|
<pubDate>Thu, 06 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-6/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>In publishing and graphic desi</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-3/</link>
|
||||||
|
<pubDate>Mon, 03 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-3/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
9346
public/categories/book/index.html
Normal file
19
public/categories/book/index.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Book on Professors - Personal Portfolio Theme</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/book/</link>
|
||||||
|
<description>Recent content in Book on Professors - Personal Portfolio Theme</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Sat, 01 Jan 2022 00:00:00 +0000</lastBuildDate>
|
||||||
|
<atom:link href="http://localhost:1313/professors/site/categories/book/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Publishing and graphic desi</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-1/</link>
|
||||||
|
<pubDate>Sat, 01 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-1/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
9342
public/categories/class-room/index.html
Normal file
19
public/categories/class-room/index.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Class Room on Professors - Personal Portfolio Theme</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/class-room/</link>
|
||||||
|
<description>Recent content in Class Room on Professors - Personal Portfolio Theme</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Tue, 04 Jan 2022 00:00:00 +0000</lastBuildDate>
|
||||||
|
<atom:link href="http://localhost:1313/professors/site/categories/class-room/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Latter match class room</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-4/</link>
|
||||||
|
<pubDate>Tue, 04 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-4/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
2
public/categories/index.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
|
||||||
|
<script src="/professors/site/livereload.js?mindelay=10&v=2&port=1313&path=professors/site/livereload" data-no-instant defer></script><script>window.location.replace("\/professors\/site");</script>
|
54
public/categories/index.xml
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Categories on Professors - Personal Portfolio Theme</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/</link>
|
||||||
|
<description>Recent content in Categories on Professors - Personal Portfolio Theme</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Thu, 06 Jan 2022 00:00:00 +0000</lastBuildDate>
|
||||||
|
<atom:link href="http://localhost:1313/professors/site/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Book Rack</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/book-rack/</link>
|
||||||
|
<pubDate>Thu, 06 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/categories/book-rack/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Library</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/library/</link>
|
||||||
|
<pubDate>Wed, 05 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/categories/library/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Class Room</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/class-room/</link>
|
||||||
|
<pubDate>Tue, 04 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/categories/class-room/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Writing</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/writing/</link>
|
||||||
|
<pubDate>Sun, 02 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/categories/writing/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Book</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/book/</link>
|
||||||
|
<pubDate>Sat, 01 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/categories/book/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Last Hope</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/last-hope/</link>
|
||||||
|
<pubDate>Sat, 01 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/categories/last-hope/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
9346
public/categories/last-hope/index.html
Normal file
19
public/categories/last-hope/index.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Last Hope on Professors - Personal Portfolio Theme</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/last-hope/</link>
|
||||||
|
<description>Recent content in Last Hope on Professors - Personal Portfolio Theme</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Sat, 01 Jan 2022 00:00:00 +0000</lastBuildDate>
|
||||||
|
<atom:link href="http://localhost:1313/professors/site/categories/last-hope/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Publishing and graphic desi</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-1/</link>
|
||||||
|
<pubDate>Sat, 01 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-1/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
9342
public/categories/library/index.html
Normal file
19
public/categories/library/index.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Library on Professors - Personal Portfolio Theme</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/library/</link>
|
||||||
|
<description>Recent content in Library on Professors - Personal Portfolio Theme</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Wed, 05 Jan 2022 00:00:00 +0000</lastBuildDate>
|
||||||
|
<atom:link href="http://localhost:1313/professors/site/categories/library/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>variation of the ordinary lor</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-5/</link>
|
||||||
|
<pubDate>Wed, 05 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-5/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
9342
public/categories/writing/index.html
Normal file
19
public/categories/writing/index.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Writing on Professors - Personal Portfolio Theme</title>
|
||||||
|
<link>http://localhost:1313/professors/site/categories/writing/</link>
|
||||||
|
<description>Recent content in Writing on Professors - Personal Portfolio Theme</description>
|
||||||
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Sun, 02 Jan 2022 00:00:00 +0000</lastBuildDate>
|
||||||
|
<atom:link href="http://localhost:1313/professors/site/categories/writing/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>New Friends Everyday at Kiddie</title>
|
||||||
|
<link>http://localhost:1313/professors/site/blog/post-2/</link>
|
||||||
|
<pubDate>Sun, 02 Jan 2022 00:00:00 +0000</pubDate>
|
||||||
|
<guid>http://localhost:1313/professors/site/blog/post-2/</guid>
|
||||||
|
<description><p>Here is example of hedings. You can use this heading by following markdownify rules. For example: use <code>#</code> for heading 1 and use <code>######</code> for heading 6.</p></description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
|
</rss>
|
18689
public/css/style.css
Normal file
BIN
public/images/blog/blog-1.jpg
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
public/images/blog/blog-1_hu_15ef236ad8ece8ed.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
public/images/blog/blog-1_hu_6ceec691ca0ef84f.webp
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
public/images/blog/blog-1_hu_fa6a5ad626b60663.webp
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
public/images/blog/blog-2.jpg
Normal file
After Width: | Height: | Size: 85 KiB |
BIN
public/images/blog/blog-2_hu_49c9a8ef92d2b853.webp
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
public/images/blog/blog-2_hu_c8b71bdb358d263a.webp
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
public/images/blog/blog-2_hu_e30bb3c83e94ba98.jpg
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
public/images/blog/blog-3.jpg
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
public/images/blog/blog-3_hu_13ae4d803acbd595.webp
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
public/images/blog/blog-3_hu_a7eced39109d63cc.jpg
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
public/images/blog/blog-3_hu_d9dc92a071ba18e1.webp
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/images/blog/blog-4.jpg
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
public/images/blog/blog-4_hu_4c7005622578f947.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
public/images/blog/blog-4_hu_abdb37c4ef41442e.webp
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
public/images/blog/blog-4_hu_bf89f52c40e687e9.webp
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/images/blog/blog-5.jpg
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
public/images/blog/blog-5_hu_1fa9c9461e8a5b22.webp
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/images/blog/blog-5_hu_352d10c6bbae3568.webp
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
public/images/blog/blog-5_hu_54124c601931f717.webp
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
public/images/blog/blog-5_hu_632552476cbe60cc.jpg
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
public/images/blog/blog-5_hu_cc034401e2f1274e.jpg
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
public/images/favicon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
public/images/favicon_hu_302f3e1abb47ae13.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
public/images/favicon_hu_50a8dfcefba7e8a8.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
public/images/favicon_hu_6da0167f32a32123.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
public/images/favicon_hu_78447c6bde7c0620.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
public/images/favicon_hu_8fe24b8d7739e95a.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
public/images/favicon_hu_997547777bc65c3.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
public/images/favicon_hu_a0382c90d2ab5755.png
Normal file
After Width: | Height: | Size: 3.0 KiB |