gobyexample/templates/index.tmpl
2019-10-14 11:38:21 +03:00

37 lines
1.4 KiB
Cheetah
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Go в примерах</title>
<link rel=stylesheet href="site.css">
</head>
<body>
<div id="intro">
<h2><a href="./">Go в примерах</a></h2>
<p>
<a href="http://golang.org">Go</a> - это язык программирования с
открытым исходным кодом, предназначенный для создания простого,
быстрого и надежного программного обеспечения.
</p>
<p>
<em>Go в примерах</em> Go by Example - это практическое введение
в Go с использованием примеров реальных программ. Проверьте
<a href="hello-world">первый пример</a> или просмотрите полный
список ниже.
</p>
<ul>
{{range .}}
<li><a href="{{.ID}}">{{.Name}}</a></li>
{{end}}
</ul>
<p class="footer">
by <a href="https://markmcgranaghan.com">Mark McGranaghan</a> | <a href="https://github.com/mmcgrana/gobyexample">source</a> | <a href="https://github.com/mmcgrana/gobyexample#license">license</a>
<br/>
переведено Nick S. | <a href="https://github.com/badkaktus/gobyexample">исходники</a>
</p>
</div>
</body>
</html>