38 lines
1.0 KiB
Bash
38 lines
1.0 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
_distpath="$PWD/www/distfiles"
|
||
|
mkdir -p "$_distpath"
|
||
|
|
||
|
_repopath="/home/sdk/www/repo"
|
||
|
|
||
|
out() { printf ' %s%s\n' "$1"; }
|
||
|
|
||
|
out "<h1>Source Code Repositories</h1>"
|
||
|
out " <p>Stuff I wrote or regularly contribute to</p>"
|
||
|
|
||
|
repo() {
|
||
|
NAME="$1"
|
||
|
LINK="$2"
|
||
|
DESC="$3"
|
||
|
out " <tr>"
|
||
|
out " <td><a href=\"$LINK\">$NAME</a></td>"
|
||
|
out " <td>$DESC</td>"
|
||
|
out " </tr>"
|
||
|
}
|
||
|
|
||
|
out "<table class=\"repotable\">"
|
||
|
out " <tr>"
|
||
|
out " <th>Repository</th>"
|
||
|
out " <th>Description</th>"
|
||
|
out " </tr>"
|
||
|
|
||
|
|
||
|
repo "xpick" "https://github.com/c0dev0id/xpick" "Command line color picker with hex, xterm and rgb support"
|
||
|
repo "mkpicindex" "https://github.com/c0dev0id/mkpicindex" "Image gallery generator with shell tools (static + js version)"
|
||
|
repo "luakit" "https://github.com/luakit/luakit" "Fast, small, webkit based browser framework extensible by Lua"
|
||
|
repo "mystuff" "https://github.com/c0dev0id/mystuff" "My OpenBSD ports"
|
||
|
repo "dotfiles" "https://github.com/c0dev0id/dotfiles" "My Dotfiles"
|
||
|
|
||
|
|
||
|
out "</table>"
|