ari.lt/index.html

89 lines
3.8 KiB
HTML
Raw Normal View History

2021-07-02 04:03:52 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-07-03 23:25:21 +03:00
<title>Aris_Web::Home</title>
2021-07-02 04:03:52 +03:00
<link rel="stylesheet" href="/content/styles/generic/generic.css">
2021-07-03 23:25:21 +03:00
<link rel="stylesheet" href="/content/styles/box/box.css">
2021-07-02 04:03:52 +03:00
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.css">
2021-07-03 23:25:21 +03:00
<script src="/content/js/commands/index.js" defer></script>
<script src="/content/js/generic/generic.js" defer></script>
<script src="/help/index.js" defer></script>
2021-07-02 04:03:52 +03:00
</head>
<body>
<nav class="nav-main" id="bar">
<ul class="nav-list" id="bar-list">
</ul>
<noscript>
<style>
.nav-list {
display: none;
}
</style>
<div class="error">
For full functionality of this site it is necessary to enable JavaScript.<br/>
Here are the <a href="https://www.enable-javascript.com/" target="_blank">
instructions how to enable JavaScript in your web browser</a>.
</div>
</noscript>
</nav>
<div id="menus">
2021-07-03 23:25:21 +03:00
<div class="mobile-menu hiddenMobile-noanim" id="mobile-menu">
2021-07-02 04:03:52 +03:00
</div>
</div>
<div class="content" id="content" name="content">
2021-07-03 23:25:21 +03:00
<div class="box">
<h1 class="heading" id="welcome">Welcome to <i>the home page</i>!</h1>
2021-07-05 04:19:47 +03:00
2021-07-03 23:25:21 +03:00
<ul class="contents">
<li><a href="#welcome">Welcome</a></li>
<li><a href="#who">Who even am I?</a></li>
<li><a href="#what">What is this?</a></li>
<li><a href="#before-fork">Before forking</a></li>
</ul>
<div class="content">
<h1 id="who">#1 Who Am I?</h1>
<p>
Good question, I am ari, I live in Lithuania and I like programming.<br/>
I'm currently learning the C++ programming language. I can do python and I think i'm okay at it.<br/>
I can do some lua, but not as much as python.<br/>
2021-07-05 04:19:47 +03:00
I can also do some front-end web deveopment using CSS, SCSS and HTML, but I'm pretty garbage at it<br/>
2021-07-03 23:25:21 +03:00
I know some JavaScript, but i hate it, but I love it. We have a love-hate relationship.<br/>
2021-07-05 04:22:07 +03:00
I also enjoy linux, I have tried LOADS of distros, but now I stick with Arch Linux,<br/>
2021-07-03 23:25:21 +03:00
Though I have to thank the people in the <a href="//endeavouros.com/">
2021-07-05 04:22:07 +03:00
EndeavourOS team</a> and pals @ the <a href="//t.me/endeavouros">EndeavourOS telegram</a> group for getting me into arch linux in the first place.
2021-07-03 23:25:21 +03:00
</p>
<br/>
2021-07-05 04:19:47 +03:00
2021-07-03 23:25:21 +03:00
<h1 id="what">#2 What is this?</h1>
<p>
This is my webbpage. I created this page for fun.<br/>
I wrote this webbpage mainly in JavaScript, but there's loads of HTML too.<br/>
Here I will be sharing things I do and maybe introducing cool features over time.<br/>
This page uses SCSS as its main styling language, the SCSS is transpiled into CSS.<br/>
</p>
<br>
<h1 id="before-fork">#3 What should I know if I want to fork this?</h1>
<p>
You should only edit the *.scss files and transpile them using something like <a href="//github.com/Wscats/compile-hero">compile-hero VScode(-ium)</a> extension.<br/>
The transpiled (*.css) files are here because the app is hosted on <a href="//netlify.app">NetLify</a> directly from GitHub.<br/>
</p>
</div>
</div>
2021-07-02 04:03:52 +03:00
</div>
</body>
</html>
2021-07-05 04:19:47 +03:00