An open API service indexing awesome lists of open source software.

https://github.com/michaelliao/ssi-server

Server-Side-Includes Server & Generate Static Pages.
https://github.com/michaelliao/ssi-server

http-server python3 server-side-includes shtml

Last synced: about 1 year ago
JSON representation

Server-Side-Includes Server & Generate Static Pages.

Awesome Lists containing this project

README

          

# Server Side Includes Server

SSI-Server is a simple HTTP server that supports the old Server-Side-Includes technology.

Using SSI to design .shtml can reduce lots of templating work, and simply publish all .shtml to .html pages to make everything works on GitHub pages or other static web server!

# Usage

Start server:

```
$ ./ssi_server.py [--port 8000] [--dir .]
```

Generate static pages:

```
$ ./ssi_server.py -g [--dir .]
```

# Limitation

Only support `include file` directive:

```

```

Directive must be in a single line that cannot contains other HTML tags:

```




```

# Best Practice

Always use `.html` for links:

```

About

```