diff options
| author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2026-04-04 22:32:45 +0200 |
|---|---|---|
| committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2026-04-04 22:32:45 +0200 |
| commit | a72ab23298e860a5444be5256a6153e01dd88bd5 (patch) | |
| tree | 3608ef2a9e04525fdc9e0f4d09f7e71b224087be /www/index.html | |
| parent | a809bc0f49ee4c6e777f39d1f80ee57862a0fcab (diff) | |
Start working on a website and some scripts to maintain it
* configure.ac (AM_INIT_AUTOMAKE): Add dist-bzip2 and dist-xz.
(AC_CONFIG_FILES): Add scripts/publish-release and
scripts/publish-release-docs.
* doc/Makefile.am: Pass in package version to gendocs.sh. Set css for
manual, and toplevel url.
* doc/index_template.html: Set stylesheet link and reformat.
* scripts/publish-release-docs.in: New file.
* scripts/publish-release.in: New file.
* scripts/publish-www: New file.
* www/index.html: New file.
* www/style.css: New file.
Diffstat (limited to 'www/index.html')
| -rw-r--r-- | www/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..f635cea --- /dev/null +++ b/www/index.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> + <head> + <title>Aplwc</title> + <link rel="stylesheet" type="text/css" href="/style.css"> + </head> + <body> + <header> + <h1>Aplwc - A Programming Language With Constraints</h1> + </header> + <section> + <h2>Latest Release: v0.1 (2026-04-02)</h2> + <h3>News</h3> + <ul> + <li>Initial import of the code into git.</li> + </ul> + <h3>Source</h3> + <ul> + <li><a href="https://git.sr.ht/~pmikkelsen/aplwc/refs/download/v0.1/aplwc-0.1.tar.gz">aplwc-0.1.tar.gz</a></li> + <li><a href="https://git.sr.ht/~pmikkelsen/aplwc/refs/download/v0.1/aplwc-0.1.tar.xz">aplwc-0.1.tar.xz</a></li> + <li><a href="https://git.sr.ht/~pmikkelsen/aplwc/refs/download/v0.1/aplwc-0.1.tar.bz2">aplwc-0.1.tar.bz2</a></li> + + <li><a href="https://git.sr.ht/~pmikkelsen/aplwc/tree/v0.1">git repository at release tag</a></li> + <li><a href="https://git.sr.ht/~pmikkelsen/aplwc/archive/v0.1.tar.gz">git snapshot (.tar.gz)</a></li> + </ul> + <h3>Documentation</h3> + <a href="/v0.1/manual/">Aplwc v0.1 manual</a> + </section> + </body> +</html> |