forked from menteslibres/golang.mx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsite.yaml
46 lines (40 loc) · 1.47 KB
/
site.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Configuration file for Luminos. http://luminos.menteslibres.org
#
# You are viewing a YAML formatted file, read more about the format
# at http://www.yaml.org.
#
# Note: Use two space indentations instead of the \t character.
#
#
page:
# Name of the site.
brand: "golang.mx"
# Some properties for <head>.
head:
# Title that appears on the <title> tag.
title: "golang.mx - Comunidad de usuarios Go en México"
# Some properties for <body>.
body:
# Title that appears on the <h1> tag.
title: "golang.mx"
# Top navigation bar.
menu:
- { text: "Proyectos", url: "/proyectos" }
- { text: "Tutoriales", url: "/tutoriales" }
- { text: "Reuniones", url: "/reuniones" }
- { text: "Go+", url: "https://plus.google.com/communities/110325783890611262108" }
# Top-right navigation helper.
menu_pull:
- { text: "Portada", url: "/" }
scripts:
footer: |
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-39676281-1']);
_gaq.push(['_setDomainName', 'golang.mx']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();