-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (110 loc) · 4.16 KB
/
index.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>
<head>
<title>Blog @ Kyle Wooten</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="This is the blog of Kyle Wooten. I just want people to be happy.">
<meta name="author" content="Billy Kyle Wooten">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/kube.min.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/custom.min.css" />
<link rel="shortcut icon" href="img/favicon.png" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Navigation -->
<div class="main-nav">
<div class="container">
<header class="group top-nav">
<nav class="navbar logo-w navbar-left" >
<a class="logo" href="index.html">Kyle Wooten</a>
</nav>
<div class="navigation-toggle" data-tools="navigation-toggle" data-target="#navbar-1">
<span class="logo">Kyle Wooten</span>
</div>
<nav id="navbar-1" class="navbar item-nav navbar-right">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<!-- <li><a href="archive.html">Archive</a></li> -->
</ul>
</nav>
</header>
</div>
</div>
<!-- Introduction -->
<div class="intro">
<div class="container">
<div class="units-row">
<div class="unit-10">
<img class="img-intro" src="img/avatar.png" alt="">
</div>
<div class="unit-90">
<p class="p-intro">Innovation is fabricated via free technology and information. Nobody can take that away.</p>
</div>
</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="container">
<!-- Post -->
<div class="post">
<!-- Heading -->
<a href="blogpost/2017/pythonwunderground.html"><h1>Pull weather data from wunderground using python for graphite or cacti</h1></a>
<hr>
<div class="in-content">
<p>
Pulling your local weather data into graphite or another graphing program such as cacti is a cool tiny project. I've written a small python script that pulls the data from wunderground's API and outputs the data. Using a tiny config file you can get this up and running in minutes.<br><br>
<a href ="https://github.com/Cryson/cacti_wunderground">https://github.com/Cryson/cacti_wunderground</a>
</p>
<a class="read-more" href="blogpost/2017/pythonwunderground.html">Read more</a>
</div>
<div class="foot-post">
<div class="units-row">
<strong>Date:</strong>
<text> January 31, 2017</text>
<!-- <div class="unit-100">
<strong>Tags:</strong>
<a href="#">test</a>,
<a href="#">posts</a>
</div>
<div class="unit-100">
<strong>COMMENTS:</strong>
<a href="#"> TEST 3</a>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<!-- <div class="units-row">
<div class="unit-50">
<a href="archive.html" class="btn btn-black left"><i class="fa fa-arrow-left"></i> PREVIOUS</a>
</div>
</div> -->
<br>
<ul class="social list-flat"><center>
<li><a href="mailto:billykwooten@gmail.com"><i class="fa fa-envelope"></i></a></li>
<li><a href="https://twitter.com/billykwooten"><i class="fa fa-twitter"></i></a></li>
</center>
</ul>
<p class="text-centered foot-cp">
<a>Blog by Kyle Wooten</a>
<a class="text-centered foot-cp-sub">
<br>
<a><small>Stay Free</small></a>
</a>
</div>
</footer>
<!-- Javascript -->
<script src="js/jquery.min.js"></script>
<script src="js/kube.min.js"></script>
</body>
</html>