-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhello-world.html
117 lines (106 loc) · 4.98 KB
/
hello-world.html
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>Hello World! - Karuth</title>
<!-- All the meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:type" content="article"/>
<meta property="og:title" content="Hello World!"/>
<meta property="og:url" content="http://karuth.com/hello-world.html"/>
<meta property="og:description" content="Introduction to Karuth"/>
<link href="http://bootswatch.com/readable/bootstrap.css" rel="stylesheet"/>
<link href="http://bootswatch.com/readable/bootstrap.min.css" rel="stylesheet"/>
<link href="http://karuth.com/theme/static/css/style.css" rel="stylesheet" />
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-46714334-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';
/*Update Your Analytics Tracking Code to Support Display Advertising by uncommenting the following
instead of the above line */
/*ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';*/
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="http://karuth.com"" class="navbar-brand">Karuth</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="http://karuth.com/pages/about.html">About</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="bs-docs-section">
<div class="page-header">
<h1>Hello World!</h1>
<!--span class="glyphicon glyphicon-calendar"></span--> December 24, 2013
  
<!--span class="glyphicon glyphicon-user"></span--> by
<a class="url fn" href="http://karuth.com/author/gouthaman-balaraman.html"> Gouthaman Balaraman </a>
</div>
<!-- article description -->
<!-- article content -->
<p><p>Hello World! I have set up my static blog using pelican.</p>
<pre class="code python literal-block">
<span class="k">def</span> <span class="nf">my_function</span><span class="p">():</span>
<span class="s">"just a test"</span>
<span class="k">print</span> <span class="mi">8</span><span class="o">/</span><span class="mi">2</span>
</pre>
</p>
<br>
<!-- article tags-->
<span class="glyphicon glyphicon-tags"></span>  
<a href="http://karuth.com/tag/general.html">general</a>  
<br>
<!-- article comments -->
<div class="comment">
<div id="disqus_thread"></div> <!-- comment app container -->
</div>
<!-- Comment BEGIN -->
<script type="text/javascript">
var disqus_shortname = 'karuth'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<!-- Comment END -->
</div>
</div>
</div>
<footer id="contentinfo" class="footer">
<nav class="pull-right bottom-nav">
<a href="http://karuth.com/None">RSS</a>
</nav>
<address id="about" class="vcard body">
© <a href="http://karuth.com">Karuth</a> Proudly powered by <a href="http://getpelican.com/">Pelican</a>
</address><!-- /#about -->
</footer><!-- /#contentinfo -->
</div><!-- container -->
</body>
</html>