summaryrefslogtreecommitdiff
path: root/views/layoutmini.haml
blob: 7270c4f4f881cc968b01758754273e5bf084c8f5 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
!!! 5
%html
	%head
		-unless @grito.nil?
			-if @grito.errors.empty?
				%title= "#{@grito.title} - ¡Grita!"
			-else
				%title ¡Grita!
		%link{:rel => 'stylesheet', :type => 'text/css', :href => '/style.css', :title => 'default'}		
		%link{:rel => "icon", :href => "/images/favicon.ico", :type => "image/x-icon"}
		%link{:rel => "icon", :href => "/images/favicon.png", :type => "image/png"}
		%script{:src => "http://www.google.com/jsapi", :type => "text/javascript" }
		%script{:type => "text/javascript" }
			:plain
				  google.load("jquery", "1.4.0");
		%script{:src => "/js/jquery.qtip-1.0.0-rc3.min.js", :type => "text/javascript" }
		%script{:type => "text/javascript" }
			:plain
				$(document).ready(function() 
				{
					$('#qrcode').qtip(
					   {
					      content: 'Imprime este código para que puedas compartirlo físicamente. (Solo necesitas un lector de códigos como kaywa o i-nigma en tu celular)',
						  show: 'mouseover',
						  hide: 'mouseout',
						  position: {
						      corner: {
						         target: 'bottomMiddle',
						         tooltip: 'topMiddle'
						      }
						  },
						  style: { 
						      width: 400,
						      padding: 5,
						      background: '#222',
						      color: '#fff',
						      textAlign: 'center',
						      border: {
						         width: 7,
						         radius: 5,
						         color: '#222'
						      },
						      tip: 'topMiddle',
						      name: 'dark' // Inherit the rest of the attributes from the preset dark style
						   }
					   });
					$('input.url').qtip(
					   {
					      content: 'Usa esta dirección para compartir el texto via web.',
						  show: 'mouseover',
						  hide: 'mouseout',
						  position: {
						      corner: {
						         target: 'topMiddle',
						         tooltip: 'bottomMiddle'
						      }
						  },
						  style: { 
						      width: 400,
						      padding: 5,
						      background: '#222',
						      color: '#fff',
						      textAlign: 'center',
						      border: {
						         width: 7,
						         radius: 5,
						         color: '#222'
						      },
						      tip: 'bottomMiddle',
						      name: 'dark' // Inherit the rest of the attributes from the preset dark style
						   }
					   });
				});
		%meta{'http-equiv' => 'Contet-Type', :content => 'text/html; charset=utf-8' }/
		%script{:type => "text/javascript" }
			:plain
				var _gaq = _gaq || [];
				  _gaq.push(['_setAccount', 'UA-20018878-1']);
				  _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);
				  })();
	%body
		#wrapper
			#header
				%a{:id => 'logomini', :href=> '/'}<
					%span Grita!
			%hr/
			#body 
				=yield
			#footer