pidgin/nest

Unify contents of contributing section into a single page

- Add some basic content to the index of the development section so that
it's not empty
- Remove contributing/mercurial page since its contents are now in the docs
page for using mercurial or in the (now single) contributing page.
- Add section in contributing page that points to useful link on how to
contribute code.
- Minor cleanups in the pre-existing contributing page
- Fix broken link in about index page that appeared after moving the
contributing section into a single page.

Testing Done:
Ran dev-server.sh and verified contents of the website looked as intended

Bugs closed: NEST-33

Reviewed at https://reviews.imfreedom.org/r/789/
environment:
- REPO=pidgin/nest
- TAG=latest
- BUILD_NAME
- REGISTRY_USERNAME
- REGISTRY_PASSWORD
- REGISTRY=docker.io
tasks:
import:
type: docker/import
files: .:.
build:
type: docker/build
dockerfile: Dockerfile
tag: ${REGISTRY}/${REPO}:${TAG}
labels:
- BUILD_DATE=${RUN_TIME}
- COMMIT=${HG_COMMIT}
files: .:.
arguments:
- BUILD_DATE=${RUN_TIME}
- BUILD_NAME=${BUILD_NAME}
- COMMIT=${HG_COMMIT}
push:
type: docker/push
image: ${REGISTRY}/${REPO}:${TAG}
clean:
type: docker/remove
quiet: true
image: ${REGISTRY}/${REPO}:${TAG}
login:
type: docker/login
username: ${REGISTRY_USERNAME}
password: ${REGISTRY_PASSWORD}
server: ${REGISTRY}
logout:
type: docker/logout
server: ${REGISTRY}
plans:
default:
stages:
- tasks: [import, build]
publish:
stages:
- tasks: [push]
cicd:
stages:
- name: build
tasks: [import, build]
- name: publish
tasks: [login, push]
- name: cleanup
tasks: [logout, clean]
run: always
clean:
stages:
- tasks: [clean]