Skip to content

Commit 62992fd

Browse files
author
Jay Conrod
committed
content/static/doc: link module blog posts from golang.org/doc
Updates golang/go#33637 Change-Id: I37c81d2358c9b2c7ae11939b3884acea2612ff7d Reviewed-on: https://go-review.googlesource.com/c/website/+/197640 Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent efeb149 commit 62992fd

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

cmd/golangorg/regtest_test.go

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ func TestLiveServer(t *testing.T) {
3434
PostBody string
3535
StatusCode int // if 0, expect 2xx status code.
3636
}{
37+
{
38+
Path: "/doc/",
39+
Substring: "an introduction to using modules in a simple project",
40+
},
3741
{
3842
Path: "/doc/faq",
3943
Substring: "What is the purpose of the project",

content/static/doc/docs.html

+7
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,13 @@ <h4>Packages</h4>
168168
<li><a href="/blog/go-image-package">The Go image package</a> - the fundamentals of the <a href="/pkg/image/">image</a> package.</li>
169169
<li><a href="/blog/go-imagedraw-package">The Go image/draw package</a> - the fundamentals of the <a href="/pkg/image/draw/">image/draw</a> package.</li>
170170
</ul>
171+
172+
<h4>Modules</h4>
173+
<ul>
174+
<li><a href="/blog/using-go-modules">Using Go Modules</a> - an introduction to using modules in a simple project.</li>
175+
<li><a href="/blog/migrating-to-go-modules">Migrating to Go Modules</a> - converting an existing project to use modules.</li>
176+
<li><a href="/blog/publishing-go-modules">Publishing Go Modules</a> - how to make new versions of modules available to others.</li>
177+
</ul>
171178
{{end}}
172179

173180
<h4>Tools</h4>

0 commit comments

Comments
 (0)