The source code to build and host the main distrust.co landing page(s). https://distrust.co
Go to file
Anton Livaja a7705b5217
update blog content
2025-03-28 09:59:36 -07:00
_includes move rss to footer 2025-03-22 16:15:18 -07:00
_layouts fix: remove blog header and add top margin 2025-03-24 12:01:39 -07:00
_posts update blog content 2025-03-28 09:59:36 -07:00
_sass fix: remove blog header and add top margin 2025-03-24 12:01:39 -07:00
_vendor add theme submodule 2023-05-04 19:45:35 -07:00
assets feat: add rss 2025-03-20 18:56:28 -07: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
.editorconfig big redesign 2025-03-14 19:45:15 -07: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 feat: add rss 2025-03-20 18:56:28 -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 fix: add .html to blog permalinks 2025-03-20 19:02:25 -07:00
blog.md clean up blog layout 2025-03-22 16:09:02 -07:00
company.md add taglines for preview 2025-03-18 18:36:09 -07:00
contact.md add taglines for preview 2025-03-18 18:36:09 -07:00
index.md add taglines for preview 2025-03-18 18:36:09 -07:00
roadmap.md add taglines for preview 2025-03-18 18:36:09 -07:00
services.md add taglines for preview 2025-03-18 18:36:09 -07: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