Viewing file on branch master
| / | template | bar.html |
| 1 | !! |
| 2 | HOME="" |
| 3 | USERS="" |
| 4 | SERVICES="" |
| 5 | DOCS="" |
| 6 | case "${1:-}" in |
| 7 | home) HOME=active ;; |
| 8 | users) USERS=active ;; |
| 9 | services) SERVICES=active ;; |
| 10 | docs) DOCS=active ;; |
| 11 | esac |
| 12 | !! |
| 13 | |
| 14 | <table id="topbar"><tbody><tr> |
| 15 | <td><a class="${HOME}" href="/mod">Home</a></td> |
| 16 | <td><a class="${USERS}" href="/mod/cgi-bin/users">Users</a></td> |
| 17 | <td><a class="${SERVICES}" href="/mod/services">Services</a></td> |
| 18 | <td><a class="${DOCS}" href="/mod/docs">Docs</a></td> |
| 19 | </tr></tbody></table> |
| 20 |