-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
317 lines (305 loc) · 11.7 KB
/
index.html
File metadata and controls
317 lines (305 loc) · 11.7 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Home - Dragon Linux</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="GravCMS" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@DragonLinux" />
<meta name="twitter:creator" content="@DragonLinux" />
<meta name="twitter:title" content="Dragon Linux" />
<meta name="twitter:description" content="The most dragonified Linux distribution to exist" />
<meta name="twitter:image" content="https://dragon-linux.veltron.net/assets/images/favicon.png" />
<meta name="twitter:image:width" content="256">
<meta name="twitter:image:height" content="256">
<meta property="og:image" content="https://dragon-linux.veltron.net/assets/images/favicon.png">
<meta property="og:title" content="Dragon Linux">
<link rel="icon" type="image/png" href="assets/images/favicon.png" />
<link rel="canonical" href="index.html" />
<link href="assets/css/all.min.css" type="text/css" rel="stylesheet">
<link href="assets/css/mermaid.css" type="text/css" rel="stylesheet">
<link href="assets/css/form-styles.css" type="text/css" rel="stylesheet">
<link href="assets/css/login.css" type="text/css" rel="stylesheet">
<link href="assets/css/spectre.min.css" type="text/css" rel="stylesheet">
<link href="assets/css/spectre-exp.min.css" type="text/css" rel="stylesheet">
<link href="assets/css/theme.min.css" type="text/css" rel="stylesheet">
<link href="assets/css/custom.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v7.1.0/css/all.css"/>
<style>
@media (max-width: 768px) {
/* Remove fixed height on columns */
.column[style*="height"] {
height: auto !important;
padding-top: 10px !important;
justify-content: center !important;
}
/* Hide all menus */
.navbar-section.desktop-menu,
.mobile-menu,
.mobile-container {
display: none !important;
visibility: hidden !important;
height: 0 !important;
overflow: hidden !important;
}
/* Navbar container flexible */
.navbar {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
padding: 5px 0;
box-sizing: border-box;
height: auto !important; /* remove any fixed height */
}
/* Logo container full width, centered */
.navbar-section.logo {
width: 100%;
text-align: center;
padding: 0;
margin: 0 auto;
}
/* Scale logo image to fit */
.navbar-section.logo img {
max-width: 90%; /* scale horizontally */
max-height: 6.5vh; /* scale vertically relative to viewport height */
width: auto;
height: auto;
display: block;
}
/* Hide all other navbar sections */
.navbar-section:not(.logo) {
display: none !important;
}
}
/* Scale desktop.png image next to "What is Dragon Linux?" on mobile */
@media (max-width: 768px) {
/* Target the column containing the image */
.columns.left .column:last-child img {
max-width: 100% !important; /* image cannot exceed container width */
height: auto !important; /* maintain aspect ratio */
margin: 0 auto !important; /* center the image horizontally */
display: block;
}
/* Ensure the column container shrinks to fit image */
.columns.left .column:last-child {
display: flex !important;
justify-content: center !important;
align-items: flex-start !important;
height: auto !important;
padding-top: 10px !important;
}
}
</style>
<script src="assets/js/jquery-3.x.min.js"></script>
<script src="assets/js/underscore-min.js"></script>
<script src="assets/js/raphael-min.js"></script>
<script src="assets/js/sequence-diagram-min.js"></script>
<script src="assets/js/flowchart-latest.js"></script>
<script src="assets/js/mermaid.min.js"></script>
<script src="assets/js/singlepagenav.min.js"></script>
<script>
$(document).ready(function() {
mermaid.initialize({startOnLoad:true});
mermaid.ganttConfig = {
axisFormatter: [["%d-%m-%Y", function (d){return d.getDay() == 1;}]]
};
$(".diagram").sequenceDiagram({theme: 'simple'});
var parent = document.getElementsByClassName("flow");
for(var i=0;i<parent.length;i++) {
var data = parent[i].innerHTML.replace(/</g, '<').replace(/>/g, '>');
parent[i].innerHTML = "";
var chart = flowchart.parse(data);
chart.drawSVG('canvas_'+i, {
'font-size': 14,
'font-color': 'black',
'line-color': 'black',
'element-color': 'black',
'yes-text': 'yes',
'no-text': 'no',
// More informations : http://flowchart.js.org
'flowstate' : {
'simple': {'fill' : '#FFFFFF'},
'positive': {'fill' : '#387EF5'},
'success': { 'fill' : '#9FF781'},
'invalid': {'fill' : '#FA8258'},
'calm': {'fill' : '#11C1F3'},
'royal': {'fill' : '#CF86E9'},
'energized': {'fill' : 'F3FD60'},
}
});
}
});
</script>
</head>
<body id="top" class=" header-fixed header-animated header-dark header-transparent">
<div id="page-wrapper">
<section id="header" class="section">
<section class="container grid-lg">
<nav class="navbar">
<section class="navbar-section logo">
<a href="index.html" class="navbar-brand mr-10">
<img src="assets/images/banner.jpeg" alt="Dragon Linux" />
</a>
</section>
<section class="navbar-section desktop-menu">
<nav class="dropmenu animated">
<ul class="langswitcher">
</ul>
<ul class="navigation">
<li><a class="" href="#home">Home</a></li>
<li><a class="" href="#what-is-dragon-linux">What is Dragon Linux?</a></li>
<li><a class="" href="#features">Features</a></li>
<li><a class="" href="#download-now">Downloads</a></li>
</ul>
</nav>
</section>
</nav>
</section>
</section>
<div class="mobile-menu">
<div class="button_container" id="toggle">
<span class="top"></span>
<span class="middle"></span>
<span class="bottom"></span>
</div>
</div>
<div id="home"></div>
<section id="" class="section modular-hero hero title-h1h2 overlay-dark parallax hero-large " style="background-image: url('assets/images/desktop.png');">
<div class="image-overlay"></div>
<section class="container grid-lg" style="text-align: center">
<h1>Introducing <strong>Dragon Linux</strong></h1>
<h3>Dragon Linux aims to bring you a Dragon themed Linux® experience.</h3>
</section>
<i id="to-start" class="pulse fa fa-angle-down"></i>
</section>
<section id="start">
<div id="what-is-dragon-linux"></div>
<section class="section modular-text bg-gray">
<section class="container grid-lg">
<div class="columns left">
<div class="column col-6 col-md-12">
<h2>What is <strong>Dragon Linux</strong>?</h2>
<ul>
<li>Dragon Linux is a project with the goal of making a simple and easy to use Linux experience with support for various hardware from all kinds of life.</li>
</ul>
<h2>Why should I use <strong>Dragon Linux</strong>?</h2>
<ul>
<li>With Ubuntu’s excellent software and hardware support, you can expect a solid and high-quality experience without any unwanted surprises. Dragon Linux is based on Ubuntu Linux 25, the latest Ubuntu Linux release with the newest software versions across the board. We support most AMD and Intel CPU’s.</li>
</ul>
</div>
<div class="column col-6 col-md-12" style="
display: flex;
justify-content: flex-end; /* pushes the image to the right */
align-items: flex-start; /* start from top */
height: 500px; /* height of the container */
padding-top: 30px; /* less padding moves image higher */
">
<img src="assets/images/desktop.png" alt="Desktop Image" style="
max-width: 130%;
height: 110%;
margin-right: 50px; /* keeps it further to the right */
" />
</div>
</div>
</div>
</section>
</section>
<div id="features"></div>
<section class="section modular-features standard">
<section class="container grid-lg">
<div class="frame-box">
<div class="columns">
<div class="column col-4 col-md-6 col-sm-12">
<div class="feature-icon">
<i class="fa fa-fw fa fa-solid fa-wand-magic-sparkles"></i>
</div>
<br>
<div class="feature-content">
<p>Dragon Linux offers a seamless and carefree expierence.</p>
</div>
</div>
<div class="column col-4 col-md-6 col-sm-12">
<div class="feature-icon">
<i class="fa fa-fw fa fa-regular fa-dragon"></i>
</div>
<div class="feature-content">
<br>
<p>The most Dragonified Linux® to exist.</p>
</div>
</div>
<div class="column col-4 col-md-6 col-sm-12">
<div class="feature-icon">
<i class="fa fa-fw fa fa-regular fa-desktop"></i>
</div>
<div class="feature-content">
<br>
<p>Dragon Linux comes out of the box with all of the essentials, and a whole LOT more!</p>
</div>
</div>
</div>
</div>
</section>
</section>
<div id="download-now"></div>
<section class="section modular-text bg-gray">
<section class="container grid-lg">
<div class="columns right">
<div class="column col-6 col-md-12">
<h4>Now, what are you waiting for?!?</h4>
<h3>Download Dragon Linux <strong>NOW</strong> ¹ ²</h3>
<p><br></br>
<a href="https://sourceforge.net/projects/sujix-linux/files/latest/download"><img title="dragondownload" alt="dragondownload" src="assets/images/dragondownload.png" /></a> <a href="https://discord.go.veltron.net"><img title="dragondownload" alt="dragondownload" src="assets/images/veltron.png" /></a></p>
<p> <a href="https://sourceforge.net/projects/sujix-linux/files/latest/download">Download Today!</a> <a href="https://discord.go.veltron.net">Join Our Discord Today!</a>
<br></br><br></br><br></br>
¹ experience dragon linux today!!
<br></br>
² if you need support or just want to chat with our technology hangout join our discord today!</p>
</div>
<div class="column col-6 col-md-12">
<a href="https://dragoonsden.veltron.net" target="_blank" rel="noopener noreferrer">
<img src="assets/images/metalseadramon-digimon.gif" alt="MetalSeadramon">
</a>
</div>
</div>
</section>
</section>
</section>
</div>
<section id="footer" class="section bg-gray">
<section class="container grid-lg">
<div class="theme-switch">
<div class="switch"></div>
</div>
<p style="float: center"><a href="https://www.veltron.net">© 2025 - Powered By The Veltron Network</a></center></br></p>
</section>
</section>
<div class="mobile-container">
<div class="overlay" id="overlay">
<div class="mobile-logo">
<a href="index.html" class="navbar-brand mr-10">
<img src="assets/images/favicon.png" alt="Dragon Linux" />
</a>
</div>
<nav class="overlay-menu">
<ul class="tree">
</ul>
</nav>
</div>
</div>
<script src="assets/js/jquery.treemenu.js"></script>
<script src="assets/js/site.js"></script>
<script>
// singlePageNav initialization & configuration
$('ul.navigation').singlePageNav({
offset: $('#header').outerHeight(),
filter: ':not(.external)',
updateHash: true,
currentClass: 'active'
});
</script>
</body>
</html>