araozu.dev/src/pages/side-projects/index.astro

25 lines
699 B
Plaintext
Raw Normal View History

2024-07-26 23:21:13 +00:00
---
2024-08-15 17:06:09 +00:00
import SideProject from "../../layouts/SideProject.astro";
2024-07-26 23:21:13 +00:00
---
2024-08-15 17:06:09 +00:00
<SideProject
project_title="Typed Hyperscript Processor (webpage)"
git_url="https://git.araozu.dev/fernando/thp-web"
page_url="https://thp.araozu.dev"
next="thp"
images_folder="thp"
2024-08-15 17:06:09 +00:00
>
2024-08-15 21:17:23 +00:00
This is a static webpage that contains documentation
for the THP programming language.
2024-08-15 17:06:09 +00:00
<br />
<br />
2024-08-15 21:17:23 +00:00
THP is a strong, statically typed, functional first
language that compiles to PHP.
<br>
<br>
The page is written with Astro, and connects to the
compiler to provide syntax highlighting, error
detection, reference resolving and automatic
documentation generation.
2024-08-15 17:06:09 +00:00
</SideProject>