Skip to content

Commit 7c98c8c

Browse files
authored
Merge pull request #1 from Rizos13/main
feat: Setup project - basic structure created and mkdocs.yml updated.
2 parents 8846ea2 + 728f46c commit 7c98c8c

File tree

11 files changed

+103
-19
lines changed

11 files changed

+103
-19
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/img.png

61.7 KB
Loading

Diff for: docs/index.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
<figure markdown>
2-
#
2+
![Logo](img.png){ width="500" }
33
</figure>
44

5-
# Hello, World!
5+
### Welcome to Hack The Code <span class ="terminal-cursor"></span>
6+
7+
**Hack The Code** is your comprehensive resource on cyberattacks and defense methods. Here you’ll find up-to-date information, valuable recommendations, and practical guides—whether you are a professional security engineer or just a user looking to safeguard yourself in the digital world.
8+
9+
### What Will You Find on the Site?
10+
11+
> -- Cyberattack Overviews: Detailed descriptions of various types of attacks—from phishing and DDoS to sophisticated exploits and zero-day vulnerabilities.
12+
13+
> -- Defense Strategies: Practical tips and step-by-step instructions on how to protect your data, systems, and networks.
14+
15+
> -- Tools and Resources: A curated list of software, utilities, and online services for threat analysis and prevention.
16+
17+
> -- News and Analysis: Current reviews, trends, and analytical materials from the field of cybersecurity.
18+
19+
> -- Educational Materials: Articles, tutorials, and Python code examples to help you master security concepts on your own.
20+
21+
### Our Mission
22+
We believe that online security should be accessible to everyone.
23+
Our goal is to make the complex concepts and practices of cybersecurity understandable and available, thereby enhancing overall digital literacy.
624

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/static/extra.css

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
.md-nav__link {
2+
padding-top: 10px;
3+
padding-bottom: 10px;
4+
}
5+
6+
.md-nav__list {
7+
margin-top: 10px;
8+
margin-bottom: 10px;
9+
}
10+
11+
:root {
12+
--md-primary-fg-color: #2a2a2a;
13+
--md-accent-fg-color: #00a000;
14+
--md-default-bg-color: #f0f0f0;
15+
16+
--md-default-fg-color: #4a4a4a;
17+
18+
--md-code-bg-color: #1e1e1e;
19+
--md-code-fg-color: #00ff00;
20+
}
21+
22+
23+
[data-md-color-scheme="slate"] {
24+
--md-primary-fg-color: black;
25+
--md-accent-fg-color: #00ff00;
26+
--md-default-bg-color: #121212;
27+
28+
--md-default-fg-color: #c0c0c0;
29+
30+
--md-code-bg-color: black;
31+
--md-code-fg-color: #00ff00;
32+
}
33+
34+
code {
35+
font-family: "Roboto Mono", monospace;
36+
}
37+
38+
@keyframes cursor {
39+
50% { opacity: 0; }
40+
}
41+
42+
.terminal-cursor::after {
43+
content: "|";
44+
display: inline-block;
45+
margin-left: -5px;
46+
animation: cursor 1s infinite;
47+
}
48+
49+
body {
50+
cursor: url('https://cur.cursors-4u.net/cursors/cur-10/cur990.cur'), auto;
51+
}

Diff for: mkdocs.yml

+22-17
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,24 @@ site_url: https://codeyuha.github.io/hack_the_code/
33
site_author: Open WEB
44
theme:
55
name: material
6-
favicon:
7-
logo:
8-
font:
9-
text: Roboto
6+
favicon: https://cdn0.iconfinder.com/data/icons/jam-vol-2/18/code-sample-1024.png
7+
logo: https://cdn0.iconfinder.com/data/icons/jam-vol-2/18/code-sample-1024.png
108
palette:
119
- media: "(prefers-color-scheme)"
1210
toggle:
1311
icon: material/brightness-auto
1412
name: Switch to light mode
1513
- media: "(prefers-color-scheme: light)"
1614
scheme: default
17-
primary: indigo
18-
accent: indigo
15+
primary: grey
16+
accent: green
1917
toggle:
2018
icon: material/toggle-switch
2119
name: Switch to dark mode
2220
- media: "(prefers-color-scheme: dark)"
2321
scheme: slate
24-
primary: cyan
25-
accent: cyan
22+
primary: black
23+
accent: neon green
2624
toggle:
2725
icon: material/toggle-switch-off-outline
2826
name: Switch to light mode
@@ -31,22 +29,29 @@ theme:
3129
- content.code.copy
3230
- navigation.top
3331
- navigation.footer
34-
repo_name: learn-cpp
35-
# repo_url: #
36-
copyright: Copyright &copy; 2025 Coding
32+
toc:
33+
depth: 2
34+
35+
repo_name: hack-the-code
36+
copyright: Copyright &copy; 2025 Open WEB
37+
3738
nav:
3839
- Home: index.md
40+
- Learning:
41+
- Basics: learning/basics/basics.md
42+
- Advanced Topics: learning/advanced/advanced.md
43+
- Tools: learning/tools/tools.md
44+
- About: about.md
45+
- Sign in/Sign up: login.md
3946

4047
plugins:
4148
- search
42-
- tags
4349
- minify:
4450
minify_html: true
4551
- git-revision-date-localized:
4652
type: timeago
4753
enable_creation_date: true
48-
- glightbox:
49-
auto_caption: true
54+
5055
markdown_extensions:
5156
- admonition
5257
- attr_list
@@ -58,11 +63,11 @@ markdown_extensions:
5863
- pymdownx.superfences
5964
- pymdownx.details
6065
- pymdownx.emoji
66+
6167
extra:
6268
social:
6369
- icon: fontawesome/solid/house
64-
# link: #
6570
- icon: fontawesome/brands/github
66-
# link: #
6771
- icon: fontawesome/solid/paper-plane
68-
# link: #
72+
extra_css:
73+
- static/extra.css

0 commit comments

Comments
 (0)