Skip to content

Commit 728f46c

Browse files
committed
Feat: Setup project - basic structure created and mkdocs.yml updated.
1 parent 72fb961 commit 728f46c

File tree

9 files changed

+21
-23
lines changed

9 files changed

+21
-23
lines changed

Diff for: docs/about.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello world

Diff for: docs/learning/advanced/advanced.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello world

Diff for: docs/learning/basics/basics.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello world

Diff for: docs/learning/tools/tools.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello world

Diff for: docs/login.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Welcome! Please choose an option below:
2+
3+
- [Login](signin.md)
4+
- [Register](signup.md)

Diff for: docs/signin.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello world

Diff for: docs/signup.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello world

Diff for: docs/extra.css renamed to docs/static/extra.css

File renamed without changes.

Diff for: mkdocs.yml

+11-23
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ theme:
44
name: material
55
favicon: https://cdn0.iconfinder.com/data/icons/jam-vol-2/18/code-sample-1024.png
66
logo: https://cdn0.iconfinder.com/data/icons/jam-vol-2/18/code-sample-1024.png
7-
font:
8-
text: Roboto Mono
97
palette:
108
- media: "(prefers-color-scheme)"
119
toggle:
@@ -33,34 +31,26 @@ theme:
3331
toc:
3432
depth: 2
3533

34+
repo_name: hack-the-code
35+
copyright: Copyright © 2025 Open WEB
3636

37-
repo_name: learn-cpp
38-
# repo_url: #
39-
copyright: Copyright © 2025 Coding
4037
nav:
4138
- Home: index.md
42-
- Installation Databases:
43-
- MySQL: db.py
44-
- PostgreSQL: psql.py
45-
- Query Databases:
46-
- MySQL: m.py
47-
- PostgreSQL: p.py
48-
- Conditionals: hello.md
49-
- Attacks:
50-
- Network attacks: n.py
51-
- Web attacks: w.py
52-
- Python: py.md
39+
- Learning:
40+
- Basics: learning/basics/basics.md
41+
- Advanced Topics: learning/advanced/advanced.md
42+
- Tools: learning/tools/tools.md
43+
- About: about.md
44+
- Sign in/Sign up: login.md
5345

5446
plugins:
5547
- search
56-
#- tags
5748
- minify:
5849
minify_html: true
5950
- git-revision-date-localized:
6051
type: timeago
6152
enable_creation_date: true
62-
# - glightbox:
63-
# auto_caption: true
53+
6454
markdown_extensions:
6555
- admonition
6656
- attr_list
@@ -72,13 +62,11 @@ markdown_extensions:
7262
- pymdownx.superfences
7363
- pymdownx.details
7464
- pymdownx.emoji
65+
7566
extra:
7667
social:
7768
- icon: fontawesome/solid/house
78-
# link: #
7969
- icon: fontawesome/brands/github
80-
# link: #
8170
- icon: fontawesome/solid/paper-plane
82-
# link: #
8371
extra_css:
84-
- extra.css
72+
- static/extra.css

0 commit comments

Comments
 (0)