-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfiles.html
More file actions
99 lines (95 loc) · 5.28 KB
/
Copy pathfiles.html
File metadata and controls
99 lines (95 loc) · 5.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SynergyStation // File Matrix</title>
<link rel="icon" type="image/jpeg" href="logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/homepage/style.css">
<style>
.tree-view {
font-family: var(--font-mono);
font-size: 0.85rem;
line-height: 1.8;
background: #100e09;
background-image: repeating-linear-gradient(rgba(245, 239, 224, 0.025) 0px, rgba(245, 239, 224, 0.025) 1px, transparent 1px, transparent 3px);
border: 1px dashed var(--border-main);
border-radius: var(--radius-md);
padding: 20px;
overflow-x: auto;
color: var(--text-main);
white-space: pre-wrap;
}
.tree-dir { color: var(--accent-stamp); font-weight: bold; }
.tree-file { color: var(--text-pure); }
.tree-audio { color: var(--accent-hazard); }
.tree-css { color: var(--accent-alert); }
.tree-comment { color: var(--text-muted); font-style: italic; }
.back-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--text-muted);
text-decoration: none;
font-family: var(--font-mono);
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
width: fit-content;
margin-bottom: 20px;
transition: var(--transition-fast);
}
.back-link:hover { color: var(--text-pure); }
</style>
</head>
<body>
<div class="container" style="opacity: 1; animation: none;">
<a href="/" class="back-link"><i class="fas fa-arrow-left"></i> Homepage</a>
<section class="panel">
<div class="panel-title">
<span><i class="fas fa-network-wired" style="color: var(--accent-stamp);"></i> ARCHITECTURE // FILE_MATRIX</span>
<span class="live-tag" style="border-color: var(--accent-stamp); color: var(--accent-stamp);">SYSTEM_TREE</span>
</div>
<pre class="tree-view">.
├── <span class="tree-dir">📂 background/</span> <span class="tree-comment"># Custom background assets (Images / Videos)</span>
├── <span class="tree-dir">📂 css/</span> <span class="tree-comment"># Extended stylesheets and modular design system</span>
│ ├── <span class="tree-dir">📂 benkormos/</span>
│ │ └── <span class="tree-css">📄 style.css</span>
│ └── <span class="tree-dir">📂 homepage/</span>
│ └── <span class="tree-css">📄 style.css</span>
├── <span class="tree-dir">📂 music/</span> <span class="tree-comment"># Audio assets and background tracks</span>
│ ├── <span class="tree-dir">📂 mexo/</span>
│ │ ├── <span class="tree-audio">🎵 Tuff.mp3</span>
│ │ ├── <span class="tree-audio">🎵 Tuff2.mp3</span>
│ │ └── <span class="tree-audio">🎵 Tuff3.mp3</span>
│ ├── <span class="tree-dir">📂 ben/</span>
│ │ ├── <span class="tree-audio">🎵 ballernundsaufen.mp3</span>
│ │ ├── <span class="tree-audio">🎵 fish.mp3</span>
│ │ └── <span class="tree-audio">🎵 pubc.mp3</span>
│ ├── <span class="tree-audio">🎵 pitanga.mp3</span>
│ └── <span class="tree-audio">🎵 Tacos.mp3</span>
│
├── <span class="tree-dir">📂 pictures/</span> <span class="tree-comment"># Profile pictures and avatars for members</span>
│ ├── 📷 benkormos.profilbild.jpg
│ ├── 📷 julian.profilbild.png
│ └── 📷 mexo.profilbild.png
│
├── <span class="tree-file">📄 index.html</span> <span class="tree-comment"># Main Landing Page / Hub with dynamic API logic</span>
├── <span class="tree-file">📄 developer.html</span> <span class="tree-comment"># Overview page listing all developers in the project</span>
├── <span class="tree-file">📄 files.html</span> <span class="tree-comment"># Subpage displaying the internal directory architecture</span>
├── <span class="tree-file">📄 admin.html</span> <span class="tree-comment"># Administrative dashboard or portal layout</span>
│
├── <span class="tree-dir">👥 Member Profiles</span>
│ ├── <span class="tree-file">📄 ben.html</span>
│ ├── <span class="tree-file">📄 julian.html</span>
│ └── <span class="tree-file">📄 mexo.html</span>
│
├── <span class="tree-file">📄 logo.png</span> <span class="tree-comment"># Official SynergyStation branding logo</span>
└── <span class="tree-file">📄 README.md</span> <span class="tree-comment"># Project documentation (this file)</span></pre>
</section>
</div>
</body>
</html>