started working on installation

This commit is contained in:
KZacharski 2023-08-26 20:16:56 +02:00
parent 7f48d0798f
commit 164aadb05a
2 changed files with 96 additions and 1 deletions

View File

@ -0,0 +1,95 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Installation - diji docs</title>
<link rel="icon" type="image" href="./assets/favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div class="navbar">
<img onclick="openNav()" class="navicon" src="./assets/ic_fluent_navigation_24_filled.svg" height="25px">
<a href="./index.html"><img src="./assets/dijidocs.png" height="40px" style="display: block;"></a>
</div>
<div class="content">
<div class="anotherfuckingcontainer iafc">
<h1 class="t1">Installation</h1>
<h3 class="t2">Last edited: 26 August 2023<a href="https://github.com/KZacharski/diji/blob/github-files/docs/docs/installation.html" class="linkeffect ghlink">Open on GitHub</a></h3>
<p> 地基 (Dìjī) means foundation in Chinese. That's what diji is, just the foundation. It's not a framework, it's not even a static website generator. It's just a simple program that makes it quicker and easier to start a vanilla project. diji is an open source project written in go. Currently it can create a customized html boilerplate, CSS and JS files, insert sample content on the website, initialize a git repo and set up a gitignore file as well as add a favicon to the website (the user can change the default favicon in diji's config folder).</p>
<p>diji currently works on Linux, macOS and Windows, supporting both amd64/i386 and arm64/arm architectures (except for macOS because it doesn't currently support any 32-bit architectures). It's also possible to run it on other operating systems/architectures by building it from source which thanks to it being written in golang is very easy.</p>
<h3>Downloading diji</h3>
<p>Download the file corresponding with your OS and architecture from <a href="https://github.com/KZacharski/diji/releases" class="linkeffect">GitHub releases</a> then proceed to <a href="./installation.html" class="linkeffect">Installation</a>.</p>
<div class="container2">
<div class="prev ge">
<a href="./introduction.html" style="text-decoration: none; color: white; height: 100%; width: 100%;">
<div style="width: 100%; height: 100%; display: flex; align-items: center;">
<div class="nextcontentparent">
<div class="getstartedcontent">
<img src="./assets/ic_fluent_chevron_left_24_filled.svg" height="30px" class="gep nep2">
<h3 class="gep nep">Introduction</h3>
<p class="gep gepar nepar">Previous page</p>
</div>
</div>
</div>
</a>
</div>
<div class="next ge">
<a href="./favicons.html" style="text-decoration: none; color: white; height: 100%; width: 100%;">
<div style="width: 100%; height: 100%; display: flex; align-items: center; justify-content: right; text-align: right;">
<div class="nextcontentparent">
<div class="getstartedcontent">
<div style="display: flex; justify-content: right;">
<img src="./assets/ic_fluent_chevron_right_24_filled.svg" height="30px" class="gep nep2">
</div>
<h3 class="gep nep">Favicons</h3>
<p class="gep gepar nepar">Next page</p>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="drawer" class="navdrawer">
<img src="./assets/dijidocs.png" height="40px" class="logodrawer">
<a href="javascript:void(0)" class="closebtn navdrawera" onclick="closeNav()"><img src="./assets/ic_fluent_chevron_left_24_filled.svg" width="30px"></a>
<a href="./index.html" class="navdrawerlink">Homepage</a>
<a href="./introduction.html" class="navdrawerlink">Introduction</a>
<a href="#" class="navdrawerlinkactive">Installation</a>
<a href="./favicons.html" class="navdrawerlink">Favicons</a>
<a href="./configuration.html" class="navdrawerlink">Configuration</a>
<a href="./open-source.html" class="navdrawerlink">Open source</a>
<a href="./roadmap.html" class="navdrawerlink">Roadmap</a>
<div style="height: 60px;"></div>
<!--<div class="drawerbottomlinks">
<div class="blc">
<a class="bottomlink" href="https://diji.puffercat.xyz">Main website ></a>
<a class="bottomlink" href="https://github.com/KZacharski/diji">GitHub ></a>
<a class="bottomlink" href="https://github.com/KZacharski/diji/tree/github-files/docs/docs">Docs GitHub ></a>
</div>
</div>-->
</div>
<div id="drawerbg" class="navdrawerbg" onclick="closeNav()"></div>
<div class="footer">
<p class="ftrtext">Created by <a href="https://puffercat.xyz" class="footerlink">KZacharski (Puffercat)</a></p>
<p class="ftrtext">Project created with diji 1.1</p>
<p class="ftrtext"><a href="https://diji.puffercat.xyz" class="footerlink ftlpadding">Main website</a> <a href="https://github.com/KZacharski/diji" class="footerlink ftlpadding">GitHub</a> <a href="https://github.com/KZacharski/diji/tree/github-files/docs/docs" class="footerlink ftlpadding">Docs Github</a></p>
</div>
</body>
</html>

View File

@ -238,7 +238,7 @@ flex-direction: column;
grid-template-rows: 1fr; grid-template-rows: 1fr;
gap: 0 20px; gap: 0 20px;
margin-top: 30px; margin-top: 30px;
margin-bottom: 50px;
grid-auto-flow: row; grid-auto-flow: row;
grid-template-areas: grid-template-areas:
"prev next"; "prev next";