Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
902e2c2
Refactor website structure and styles
CodeMonkeyCybersecurity May 25, 2025
e6ce84f
Refactor code structure for improved readability and maintainability
CodeMonkeyCybersecurity May 25, 2025
2cef992
Add sidebar functionality with toggle and hover support
CodeMonkeyCybersecurity May 26, 2025
f3803e5
Refactor sidebar layout and functionality for improved user experience
CodeMonkeyCybersecurity May 26, 2025
5b38915
Refactor sidebar functionality to simplify event handling and remove …
CodeMonkeyCybersecurity May 26, 2025
3eb761c
modified: layouts/index.html
CodeMonkeyCybersecurity May 26, 2025
f1fe2ed
Refactor breadcrumb and single layout files for improved readability …
CodeMonkeyCybersecurity May 26, 2025
5ab397e
Please enter the commit message for your changes. Lines starting
CodeMonkeyCybersecurity May 26, 2025
c3d7e00
Refactor breadcrumb templates for improved readability and structure;…
CodeMonkeyCybersecurity May 26, 2025
4aec49c
Refactor layout and CSS files to improve structure and readability; u…
CodeMonkeyCybersecurity May 26, 2025
e66f416
Refactor HTML comments to use Hugo-style syntax for improved consiste…
CodeMonkeyCybersecurity May 26, 2025
28f6354
Refactor code structure for improved readability and maintainability
CodeMonkeyCybersecurity May 26, 2025
80e092e
Add PGP public key block for publickey.cybermonkey.net.au
CodeMonkeyCybersecurity May 26, 2025
69435f3
Add main menu items and restructure navigation; create new blog and s…
CodeMonkeyCybersecurity May 26, 2025
ae79fc9
Refactor navigation structure and implement search functionality with…
CodeMonkeyCybersecurity May 26, 2025
ac63ab8
Improve search functionality by adding error handling for network res…
CodeMonkeyCybersecurity May 26, 2025
81529cc
Refactor navigation structure for improved readability; enhance sideb…
CodeMonkeyCybersecurity May 26, 2025
3dc7834
Refactor sidebar dropdown styles for improved visibility and animation
CodeMonkeyCybersecurity May 26, 2025
819705d
Refactor dropdown and navigation styles for improved layout; add sear…
CodeMonkeyCybersecurity May 26, 2025
3f70f0d
Refactor search box styles for improved layout and usability; enhance…
CodeMonkeyCybersecurity May 26, 2025
2c817bb
Refactor search and navigation styles for improved layout and usabili…
CodeMonkeyCybersecurity May 26, 2025
dc29d53
Refactor search box and results panel styles for improved layout; enh…
CodeMonkeyCybersecurity May 26, 2025
3930957
Refactor breadcrumbs and styles for improved layout; update variable …
CodeMonkeyCybersecurity May 26, 2025
ac73cf4
Refactor site metadata and improve CSS structure
CodeMonkeyCybersecurity May 26, 2025
e11dd3e
Add CSS files for search functionality, sidebar, layout, and color to…
CodeMonkeyCybersecurity May 26, 2025
4f98e42
Update site metadata and improve content formatting for clarity
CodeMonkeyCybersecurity May 26, 2025
d9de2fd
Remove unnecessary whitespace and improve formatting in Delphi docume…
CodeMonkeyCybersecurity May 26, 2025
6451a5b
Refactor markdown files to improve formatting and consistency across …
CodeMonkeyCybersecurity May 26, 2025
ff14486
Add Noto Sans font files and tab functionality
CodeMonkeyCybersecurity May 29, 2025
a1ce58d
Refactor navigation and content structure: remove blog section, updat…
CodeMonkeyCybersecurity May 29, 2025
4e4fe02
Refactor top navigation styles and HTML structure: update CSS for bet…
CodeMonkeyCybersecurity May 29, 2025
c208b23
Add tab functionality and styles: implement new tab components and en…
CodeMonkeyCybersecurity May 30, 2025
28eeff6
Add Hugo theme configuration and module files: set theme in config.to…
CodeMonkeyCybersecurity May 30, 2025
fc411c5
Add Hugo Book theme as a submodule: configure .gitmodules and initial…
CodeMonkeyCybersecurity May 30, 2025
32e0752
Add PGP public key and theme configuration
CodeMonkeyCybersecurity May 30, 2025
0f8a4d2
Replace Roboto font with Noto Sans and update font-face declarations
CodeMonkeyCybersecurity May 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/hugo-book"]
path = themes/hugo-book
url = https://github.com/alex-shpak/hugo-book
10 changes: 10 additions & 0 deletions archetypes/docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: "{{ .Name | humanize | title }}"
weight: 1
# bookFlatSection: false
# bookToc: true
# bookHidden: false
# bookCollapseSection: false
# bookComments: false
# bookSearchExclude: false
---
6 changes: 6 additions & 0 deletions archetypes/posts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "{{ .Name | humanize | title }}"
date: {{ .Date }}
# bookComments: false
# bookSearchExclude: false
---
File renamed without changes.
3 changes: 3 additions & 0 deletions assets/_custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/* You can add custom styles here. */

// @import "plugins/numbered";
65 changes: 65 additions & 0 deletions assets/_defaults.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
// Used in layout
$padding-1: 1px !default;
$padding-4: 0.25rem !default;
$padding-8: 0.5rem !default;
$padding-16: 1rem !default;

$font-size-base: 16px !default;
$font-size-12: 0.75rem !default;
$font-size-14: 0.875rem !default;
$font-size-16: 1rem !default;

$border-radius: $padding-4 !default;

$body-font-weight: normal !default;

$body-min-width: 20rem !default;
$container-max-width: 80rem !default;

$menu-width: 16rem !default;
$toc-width: 16rem !default;

$mobile-breakpoint: $menu-width + $body-min-width * 1.2 + $toc-width !default;

$hint-colors: (
info: #6bf,
warning: #fd6,
danger: #f66,
) !default;

// Themes
@mixin theme-light {
--gray-100: #f8f9fa;
--gray-200: #e9ecef;
--gray-500: #adb5bd;

--color-link: #0055bb;
--color-visited-link: #8440f1;

--body-background: white;
--body-font-color: black;

--icon-filter: none;

--hint-color-info: #6bf;
--hint-color-warning: #fd6;
--hint-color-danger: #f66;
}

@mixin theme-dark {
--gray-100: #494e54;
--gray-200: #5c6165;
--gray-500: #999d9f;

--color-link: #84b2ff;
--color-visited-link: #b88dff;

--body-background: #343a40;
--body-font-color: #e9ecef;

--icon-filter: brightness(0) invert(1);

--hint-color-info: #6bf;
--hint-color-warning: #fd6;
--hint-color-danger: #f66;
}
31 changes: 31 additions & 0 deletions assets/_fonts.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
@font-face {
font-family: 'Noto Sans';
font-style: normal;
font-weight: 400;
font-display: fallback;
src: url('/fonts/NotoSans-Regular.ttf') format('truetype');
}

@font-face {
font-family: 'Noto Sans';
font-style: normal;
font-weight: 700;
font-display: fallback;
src: url('/fonts/NotoSans-Bold.ttf') format('truetype');
}

@font-face {
font-family: 'Noto Sans Mono';
font-style: normal;
font-weight: 400;
font-display: fallback;
src: url('/fonts/NotoSansMono-Regular.ttf') format('truetype');
}

body {
font-family: 'Noto Sans', sans-serif;
}

code {
font-family: 'Noto Sans Mono', monospace;
}
Loading