blog: delete per-repo files, update README.md, go.mod

It would be nice to delete go.mod and let the directory
be part of the x/website module, but right now x/website
requires Go 1.16 and the blog runs on App Engine which
doesn't yet support Go 1.16. So the blog is actually requiring
an older, pre-Go 1.16 version of x/website.

Once App Engine updates to Go 1.16 we can take that next
step of making blog not a submodule.

Or perhaps before that we will get to the point of serving the
blog from the cmd/golangorg server.

One way or another, this will get even simpler.

Change-Id: I04f9b4d4433009c8b204acba9043b2d8a6261189
Reviewed-on: https://go-review.googlesource.com/c/website/+/322791
Trust: Russ Cox <rsc@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
10 files changed
tree: 4a64117c973742f883c7ee7097f1baaf8a6e4952
  1. _content/
  2. blog/
  3. cmd/
  4. internal/
  5. .gitattributes
  6. .prettierrc
  7. AUTHORS
  8. codereview.cfg
  9. content.go
  10. CONTRIBUTING.md
  11. CONTRIBUTORS
  12. go.mod
  13. go.sum
  14. LICENSE
  15. PATENTS
  16. README.md
README.md

Go website

Go Reference

This repo holds content and serving programs for the golang.org web site.

Content is in _content/. Server code is in cmd/ and internal/.

To run the server to preview local content changes, use:

go run ./cmd/golangorg

The supporting programs cmd/admingolangorg and cmd/googlegolangorg are the servers for admin.golang.org and google.golang.org. (They do not use the _content/ directory.)

Each command directory has its own README.md explaining deployment.

JS/CSS Formatting

This repository uses prettier to format JS and CSS files.

The version of prettier used is 1.18.2.

It is encouraged that all JS and CSS code be run through this before submitting a change. However, it is not a strict requirement enforced by CI.

Report Issues / Send Patches

This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://golang.org/doc/contribute.html.

The main issue tracker for the website repository is located at https://github.com/golang/go/issues. Prefix your issue with “x/website:” in the subject line, so it is easy to find.