finish mainpage of the site

This commit is contained in:
Lazy Hippopotamus
2024-03-09 17:01:50 -05:00
parent daefcaf567
commit b2b7386011
18 changed files with 221 additions and 53 deletions

View File

@@ -1,7 +1,8 @@
[!]
[=isLinked]
[=title About]
[=content-]
About
<div class="text">
About Page (TODO)
</div>
[/]
[#templates/default.html]

14
site/pages/install.html Normal file
View File

@@ -0,0 +1,14 @@
[!]
[=title Install Sitix]
[=content-]
<div class="text">
At the moment, Sitix has no prebuilt binaries; I hope to include RPM/DEB packages in the next release.<br>To install it, you'll need to clone
<a href="https://github.com/LinuxRocks2000/sitix-rewrite">the Github repository</a>, run <code>./build.sh</code>, and (assuming the build completes successfully)
copy the generated <code>sitix</code> binary to some PATH-accessible location (<code>/usr/bin</code> is a good bet). Sitix requires a C++20-compatible
G++ installation; it has no other dependencies. Sitix is theoretically cross-compilable to Windows, but I have no intention of ever officially supporting Windows.
</div>
<div class="text">
Once you've got Sitix installed, see <a href="[^baseurl]/pages/usage">Usage</a>.
</div>
[/]
[#templates/default.html]

17
site/pages/todo.html Normal file
View File

@@ -0,0 +1,17 @@
[!]
[=title Todo]
[=content-]
<div class="text">
Sitix is still a pretty young piece of software, so if there's a missing feature that isn't on this list, don't hesitate to submit a feature request on <a href="https://github.com/LinuxRocks2000/sitix-rewrite/issues">the issues page</a>.
Alternatively, you could just write it yourself! This TODO list is mostly for my memory, but I would love codebase contributions to get some things crossed off.
</div>
<div class="text">
<ul>
<li>Markdown support with an @-directive</li>
<li>Code cleaning (need to fix memory management especially)</li>
<li>Make config less hack (move from \[i config] to \[i exists], and create empty objects on global with -c)</li>
<li>Add an unpack/ghost operator so setting objects to other objects works (something like \[=ghostingName-] \[%ghostedObject] \[/])</li>
</ul>
</div>
[/]
[#templates/default.html]