mirror of https://github.com/grpc/grpc.io.git
CTA button cleanup (#225)
Followup to #223 - simplify the homepage hero section by just using plain HTML for the CTA buttons (there's no benefit to the data-driven generation of these two buttons).
This commit is contained in:
parent
7ffec32a53
commit
4e9f9396ee
|
|
@ -117,11 +117,3 @@ menu:
|
||||||
url: /faq
|
url: /faq
|
||||||
weight: 7
|
weight: 7
|
||||||
parent: docs
|
parent: docs
|
||||||
|
|
||||||
buttons:
|
|
||||||
- name: Learn more
|
|
||||||
url: /docs/guides
|
|
||||||
weight: 1
|
|
||||||
- name: Get started
|
|
||||||
url: /docs/quickstart
|
|
||||||
weight: 2
|
|
||||||
|
|
|
||||||
|
|
@ -10,11 +10,12 @@
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<div class="buttons are-medium is-centered">
|
<div class="buttons are-medium is-centered">
|
||||||
{{ range site.Menus.buttons }}
|
<a class="button is-primary has-text-weight-bold" href="/docs/guides">
|
||||||
<a class="button is-primary has-text-weight-bold" href="{{ .URL }}">
|
Learn more
|
||||||
{{ .Name }}
|
</a>
|
||||||
|
<a class="button is-primary has-text-weight-bold" href="/docs/quickstart">
|
||||||
|
Get started
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue