Skip to content

Commit 14ecccc

Browse files
committed
Merge pull request ukhas#2 from priyeshpatel/habitat-themed
restyled with new habitat theme
2 parents abadbdd + e0a038c commit 14ecccc

File tree

4 files changed

+85
-10
lines changed

4 files changed

+85
-10
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "t"]
2+
path = t
3+
url = https://github.com/ukhas/habitat-template.git

logtail.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* Copyright (c) 2012: Priyesh Patel. License: GNU GPL 3 */
2+
3+
pre {
4+
font-family: monospace;
5+
}
6+
7+
#grey-section {
8+
margin-bottom: 0;
9+
}
10+
11+
#top {
12+
position: fixed;
13+
width: 100%;
14+
height: 175px;
15+
overflow: hidden;
16+
top: 0;
17+
}
18+
19+
#data-container {
20+
margin: 200px 25px 25px 25px;
21+
overflow: visible;
22+
}

logtail.html

Lines changed: 59 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,62 @@
11
<!DOCTYPE html>
2-
<!-- Copyright (c) 2012 Daniel Richman; GNU GPL 3 -->
3-
<html>
4-
<head>
5-
<title>habitat parser log viewer</title>
6-
<script type="text/javascript" src="jquery.min.js"></script>
7-
<script type="text/javascript" src="logtail.js"></script>
8-
<link href="logtail.css" rel="stylesheet" type="text/css">
9-
</head>
10-
<body>
2+
3+
<!-- habitat: parser logtail -->
4+
<!-- http://habitat.habhub.org -->
5+
<!-- (C) Copyright 2012; GNU GPL 3-->
6+
7+
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
8+
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
9+
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
10+
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
11+
<head>
12+
<meta charset="utf-8"/>
13+
<title>parser logtail - habitat</title>
14+
<meta name="description" content="javascript logtailer to view habitat parser logs"/>
15+
<meta name="author" content="Daniel Richman and Priyesh Patel"/>
16+
17+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
18+
19+
<link type="text/css" rel="stylesheet" href="t/css/base.css"/>
20+
<link type="text/css" rel="stylesheet" href="t/css/skeleton.css"/>
21+
<link type="text/css" rel="stylesheet" href="t/css/layout.css"/>
22+
<link type="text/css" rel="stylesheet" href="logtail.css" />
23+
24+
<script type="text/javascript" src="jquery.min.js"></script>
25+
<script type="text/javascript" src="logtail.js"></script>
26+
27+
<!--[if lt IE 9]>
28+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
29+
<![endif]-->
30+
31+
<link rel="shortcut icon" href="t/images/favicon.ico" />
32+
</head>
33+
34+
<body>
35+
36+
<div id="top">
37+
<header>
38+
<div class="container">
39+
<div class="sixteen columns">
40+
<h1 class="no-margin"><img src="t/images/header_logo.jpg" alt="habitat" title="habitat"/></h1>
41+
<span id="app_name"><b>logtail</b></span>
42+
</div>
43+
</div>
44+
</header>
45+
46+
<div id="grey-section">
47+
<div class="container">
48+
<div class="two-thirds column">
49+
<h3 class="remove-bottom" id="page_title">parser logtail</h3>
50+
<p class="remove-bottom" id="page_subtitle">A javascript
51+
logtailer to view the habitat parser's logs.</p>
52+
</div>
53+
</div>
54+
</div>
55+
</div>
56+
57+
<div id="data-container">
1158
<pre id="data">Loading...</pre>
12-
</body>
59+
</div>
60+
61+
</body>
1362
</html>

t

Submodule t added at dccab54

0 commit comments

Comments
 (0)