From 9815c314a3c59684b34216fdeaa6ccfaf6cad6db Mon Sep 17 00:00:00 2001 From: Hugh Ratsch Date: Tue, 11 Feb 2025 21:25:44 -0600 Subject: [PATCH] first commit --- book.toml | 12 ++++++++++++ src/README.md | 14 ++++++++++++++ src/SUMMARY.md | 6 ++++++ src/getting-started.md | 9 +++++++++ 4 files changed, 41 insertions(+) create mode 100644 book.toml create mode 100644 src/README.md create mode 100644 src/SUMMARY.md create mode 100644 src/getting-started.md diff --git a/book.toml b/book.toml new file mode 100644 index 0000000..5d34884 --- /dev/null +++ b/book.toml @@ -0,0 +1,12 @@ +[book] +authors = ["Hugh Ratsch"] +language = "en" +multilingual = false +src = "src" +title = "IT Learning Notes" + +[output.html] +default-theme = "light" +preferred-dark-theme = "navy" +git-repository-url = "" +port = 3001 \ No newline at end of file diff --git a/src/README.md b/src/README.md new file mode 100644 index 0000000..7652d68 --- /dev/null +++ b/src/README.md @@ -0,0 +1,14 @@ +# IT Learning Notes + +Welcome to my IT learning notes! This book contains my personal notes and documentation about various IT topics I'm learning. + +## What's Inside + +This book will cover various IT topics including: +- Programming +- System Administration +- Network Fundamentals +- Security Basics +- And more... + +Feel free to navigate through the topics using the sidebar. \ No newline at end of file diff --git a/src/SUMMARY.md b/src/SUMMARY.md new file mode 100644 index 0000000..f082200 --- /dev/null +++ b/src/SUMMARY.md @@ -0,0 +1,6 @@ +# Summary + +[Introduction](README.md) + +# Core Topics +- [Getting Started](getting-started.md) \ No newline at end of file diff --git a/src/getting-started.md b/src/getting-started.md new file mode 100644 index 0000000..447651c --- /dev/null +++ b/src/getting-started.md @@ -0,0 +1,9 @@ +# Getting Started + +This section will contain your first notes. You can organize your content here as you learn new topics. + +## How to Use This Book + +- Use the sidebar to navigate between different topics +- Each section will contain detailed notes about specific IT concepts +- Code examples will be formatted for easy reading and copying \ No newline at end of file