You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
775 B
35 lines
775 B
<!DOCTYPE html>
|
|
<html lang="tr">
|
|
{{ block "head" . }}
|
|
{{ partial "head" . }}
|
|
{{ end }}
|
|
<body>
|
|
{{ block "header-2" . }}
|
|
{{ partial "header-2" . }}
|
|
{{ end }}
|
|
<div class="tutorial">
|
|
<div class="container">
|
|
<div class="col-md-3">
|
|
{{ block "list-group" . }}
|
|
{{ partial "list-group" . }}
|
|
{{ end }} </div>
|
|
<div class="col-md-9">
|
|
<div class="content">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
<div class="videos pull-right">
|
|
<a href="tutorial-0.html" class="next-video btn btn-primary">İleriki Video</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ block "footer" . }}
|
|
{{ partial "footer" . }}
|
|
{{ end }}
|
|
{{ block "script" . }}
|
|
{{ partial "script" . }}
|
|
{{ end }}
|
|
</body>
|
|
</html>
|
|
|