Go to file
Richard Littauer 0c5d0c12a9 No more animations #23 2018-11-15 09:33:12 -05:00
_data Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
_includes No more animations #23 2018-11-15 09:33:12 -05:00
_layouts No more animations #23 2018-11-15 09:33:12 -05:00
_posts/blog ian miers video post 2018-08-14 00:54:54 -07:00
_sass No more animations #23 2018-11-15 09:33:12 -05:00
about Contact form partial #4 2018-10-31 14:58:54 -04:00
assets No more animations #23 2018-11-15 09:33:12 -05:00
blog Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
community Update Meetup link 2018-09-12 10:47:20 -04:00
governance Add page layouts to all of the governance links 2018-09-11 10:59:38 -04:00
grants Contact form partial #4 2018-10-31 14:58:54 -04:00
images Adding zeal mascot to footer 2018-11-15 08:24:52 -05:00
resources Testing change. 2018-09-14 11:59:42 -04:00
search Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
tags Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
theme-setup Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
zcon Add the Zcon workshop repo 2018-09-11 12:27:56 -04:00
.gitignore Add Gulp and documentation 2018-10-31 14:40:38 -04:00
CNAME Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
Gemfile Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
Gemfile.lock Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
LICENSE Add License 2018-08-21 11:57:36 -04:00
README.md Add Gulp and documentation 2018-10-31 14:40:38 -04:00
_config.yml Add Gulp and documentation 2018-10-31 14:40:38 -04:00
favicon.png Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00
gulpfile.js Remove changes check. Works inconsistently. 2018-11-15 08:25:26 -05:00
index.md No more animations #23 2018-11-15 09:33:12 -05:00
package-lock.json Add Gulp and documentation 2018-10-31 14:40:38 -04:00
package.json Add Gulp and documentation 2018-10-31 14:40:38 -04:00
search.json Revert "Remove all webdev files" 2018-09-14 11:59:13 -04:00

README.md

ZCash Foundation Website

General Instructions For Developers

The tl;dr is that almost everything we're currently keeping here: https://github.com/ZcashFoundation/ ...should be part of our Jekyll instance, displayable as normal, non-GitHub interface web pages. That way we can continue using GitHub for workflow, and people who are comfortable with it can navigate our files there, but everyone else is able to look at the regular website. Since we're mostly working with .md files anyway, I think that's pretty doable. For reference, here is the current state of our website: https://github.com/ZcashFoundation/zcashfoundation.github.io

Priorities

My technical priorities for the website:

  • Fast-loading
  • Minimal dependencies
  • Easy to maintain
  • Doesn't break any existing URLs / redirect anything that moves Not breaking URLs is a little tricky because there are a million links to our GitHub repos floating around the internet — perhaps the easiest thing will be to archive everything on GitHub and add disclaimers to each document like "please go look at our website instead because it's the maintained source of truth." Suggestions welcome.

Adding Images

The folder images/src is for the images you get pretty much anywhere - all of the images that you haven't yet optimized for the web. Put them in there, and then run:

# In the main directory
$ gulp

...which will go around shrinking them. As an example, it took the zeal-zcash-foundation-feature-image.jpg and shrunk it down to a fourth of the size that it was before.

If you don't have Gulp installed, you can get it by doing this:

$ npm install --global gulp
# And, in this directory...
$ npm install

Never embed images in images/src in a blogpost; they should always be copied over to images automatically by Gulp, and that will ensure that you're serving up nice issues to your users. The way to embed them is using this syntax:

Look at our zealous zebras!

![Zealous zebras](images/zeal-zcash-foundation-feature-image.jpg)

Note that the path is relative to where the Markdown file is. This will look pretty much like this:

Zealous zebras

You can add images directly to images without running Gulp, but they just won't be as small as your users might like. But that's always an option as needed.

Contribute

Work here is largely being done by @RichardLitt and co. If you really want to help out, open an issue?

Still got questions about how this works?

Ping @RichardLitt if you've got questions about this, on GitHub at @RichardLitt or on Twitter at @richlitt.

License

MIT © 2018 Burnt Fen Creative LLC. For now.