The source code to build and host the main distrust.co landing page(s). https://distrust.co
Go to file
shane 9f46d0d100
Move Anton up in contacts list
2023-07-26 08:06:33 -04:00
_includes Add Easter Egg to <head /> 2023-01-30 21:20:20 -06:00
_layouts Initial commit 2023-01-21 12:06:10 -06:00
_sass Initial commit 2023-01-21 12:06:10 -06:00
_vendor add theme submodule 2023-05-04 19:45:35 -07:00
assets Modify structure to fit a static site format 2023-01-30 20:03:24 -06:00
.dockerignore Dockerfile, Makefile: build into nginx container 2023-07-22 21:50:14 -05:00
.gitignore Add Dockerized workflow 2023-01-24 14:51:59 -06:00
.gitmodules move vendor to _vendor 2023-05-04 19:39:41 -07:00
404.html Initial commit 2023-01-21 12:06:10 -06:00
Dockerfile Force fullclean to remove existing images 2023-07-22 23:36:11 -04:00
Gemfile move vendor to _vendor 2023-05-04 19:39:41 -07:00
Gemfile.lock Re-add Makefile and Docker workflows 2023-07-22 17:23:57 -04:00
LICENSE Add LICENSE 2023-01-22 20:43:09 -06:00
Makefile Makefile: add error skips to clean targets 2023-07-22 22:50:31 -05:00
README.md Add instructions for new Docker workflow options 2023-07-22 23:20:52 -04:00
_config.yml Initial commit 2023-01-21 12:06:10 -06:00
about.md Modify structure to fit a static site format 2023-01-30 20:03:24 -06:00
contact.md Move Anton up in contacts list 2023-07-26 08:06:33 -04:00
index.md Modify structure to fit a static site format 2023-01-30 20:03:24 -06:00

README.md

distrust.co

Web page source.

Instructions

  1. If the repo was not cloned with submodules:
$ git submodule update --init --recursive
  1. Install make.
  2. Install docker
  3. Build (export) site to _site directory:
$ make build
  1. Serve site at 0.0.0.0:4000:
$ make serve

Generate Static Files

  1. Output static files in _site directory:
$ make _site

Cleanup

  1. Remove all build artifacts:
$ make fullclean