blob: 39fcc8f00d28ebb4e550baf8435be9c2c6329fd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# bitgloo-web
This is the code for [bitgloo.com](https://bitgloo.com)'s frontend.
The frontend uses a directory tree of folders, Markdown files, and images to
create webpages. Primary assets, like the logo and CSS script, are kept as
internal resources.
Given the URI `/projects/thing`, the frontend will render Markdown files from
`<content path>/projects/thing` in a sorted order. The files can display images
in their directory like so: ``.
## Usage
Either run with Leiningen:
```
lein run <port> <content path>
```
...or with the compiled JAR file:
```
java -jar bitgloo-web.jar <port> <content path>
```
|