The source code to build and host the main distrust.co landing page(s). https://distrust.co
Go to file
Anton Livaja 6d6684c9f8
Update name of repo and description
2024-02-08 12:25:22 -05:00
_includes fix indentation 2023-10-24 13:16:29 -04:00
_layouts Update name of repo and description 2024-02-08 12:25:22 -05:00
_sass update design and clean up content 2023-10-24 12:47:07 -04:00
_vendor add theme submodule 2023-05-04 19:45:35 -07:00
assets remove extra empty lines 2023-10-24 13:14:56 -04:00
files assets/files -> files 2023-08-08 09:47:12 -07: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 Dockerfile, -nginx.conf: regenerate nginx mime types using Debian media-types package 2023-08-05 15:24:54 -05: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 update homepage and add services page 2023-10-14 09:44:42 -04:00
about.md update design and clean up content 2023-10-24 12:47:07 -04:00
contact.md update design and clean up content 2023-10-24 12:47:07 -04:00
index.md update design and clean up content 2023-10-24 12:47:07 -04:00
services.md update design and clean up content 2023-10-24 12:47:07 -04: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