Skip to content

Commit 2965d1d

Browse files
committed
Initial gh-pages
1 parent 6fc8628 commit 2965d1d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+7092
-2558
lines changed

.gitignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
11
*.class
22
*~
3-
*.iml
43
*.jar
54
*.war
65
*.ear
76
*.sw?
87
*.classpath
9-
.gh-pages
10-
.idea
118
.pmd
129
.project
1310
.settings
14-
bin
15-
doc
11+
_site
1612
hs_err*.log
1713
target
18-
/sample/GeoLite2-City.mmdb
19-
/sample/run.sh
2014
reports
2115
Test.java

CHANGELOG.md

Lines changed: 0 additions & 108 deletions
This file was deleted.

LICENSE

Lines changed: 0 additions & 202 deletions
This file was deleted.

_config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
auto: true
2+
highlighter: rouge
3+
lsi: true
4+
permalink: /title.html

_layouts/default.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="description" content="">
7+
<meta name="author" content="MaxMind, Inc.">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9+
<link href="//www.maxmind.com/css/maxmind.css" rel="stylesheet">
10+
<link rel="stylesheet" href="stylesheets/pygments.css"/>
11+
<link rel="shortcut icon" href="//dev.maxmind.com/static/favicon.ico">
12+
13+
14+
<title>{{ page.title }}</title>
15+
</head>
16+
<body>
17+
18+
<div class="container">
19+
<div class="row-fluid">
20+
<div class="span7">
21+
22+
<ul class="nav nav-tabs">
23+
<li class="active">
24+
<a href="index.html">Overview</a>
25+
</li>
26+
<li>
27+
<a href="doc/{{ page.version }}/">API</a>
28+
</li>
29+
<li>
30+
<a href="https://github.com/maxmind/MaxMind-DB-Reader-{{ page.language }}">GitHub</a>
31+
</li>
32+
<li>
33+
<a href="http://maxmind.github.io/MaxMind-DB/">Format Specification</a>
34+
</li>
35+
<li>
36+
<a href="http://www.maxmind.com">MaxMind</a>
37+
</li>
38+
</ul>
39+
40+
</div>
41+
</div>
42+
43+
44+
{{ content }}
45+
</div>
46+
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)