-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.ftl
100 lines (77 loc) · 4.36 KB
/
index.ftl
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
<#include "header.ftl">
<#include "menu.ftl">
<div class="jumbotron">
<h1>Bake your own site!</h1>
<p class="lead">JBake is a Java based, open source, static site/blog generator for developers & designers</p>
<a class="btn btn-large btn-success" href="/download.html">Download</a>
<p></p>
<div class="alert alert-info">
<strong>Latest News:</strong> <a href="/news/jbake-v2.7.0-release-candidate.html">JBake v2.7.0 release candidate available</a>
</div>
</div>
<hr>
<h2>Get started with just 5 commands</h2>
<p>The following 5 commands will install the latest version of JBake and get you started with a simple static site you can work with.</p>
<pre>
$ curl -s "https://get.sdkman.io" | bash
$ sdk install jbake
$ mkdir awesome-jbake && cd awesome-jbake
$ jbake -i
$ jbake -b -s
</pre>
<p>Then browse to <a href="http://localhost:8820">http://localhost:8820</a> in your web browser to see your static site</p>
<hr>
<h2>Features</h2>
<div class="row-fluid marketing">
<div class="span6">
<h4>Open Source</h4>
<p>Source available on <a href="http://github.com">GitHub</a>, licensed under MIT License</p>
<h4>Cross platform support</h4>
<p>The binary distribution runs on Windows, Unix/Linux and Mac OS X.</p>
<h4>Content Formats</h4>
<p>Supports <a href="http://asciidoctor.org/">AsciiDoc</a>, <a href="http://daringfireball.net/projects/markdown/">Markdown</a> and good old HTML formatted content.</p>
<h4>Open Structure</h4>
<p>Structure your content any way you see fit.</p>
<h4>Blog Aware</h4>
<p>RSS/Atom feed, archive and tag support.</p>
<h4>Draft support</h4>
<p>View your draft content before publishing it and making it available to the world.</p>
</div>
<div class="span6">
<h4>Self contained</h4>
<p>Binary distribution contains everything you need apart from a JRE, no complicated environment setup with 3rd party dependencies.</p>
<h4>Build tools</h4>
<p>
Plugins available for <a href="https://gradle.org/">Gradle</a>,
<a href="https://maven.apache.org/">Maven</a>,
<a href="https://www.lihaoyi.com/mill/">mill</a>,
<a href="http://sbuild.org/">SBuild</a>
and <a href="https://www.scala-sbt.org/">sbt.</a>
</p>
<h4>Template Support</h4>
<p><a href="http://freemarker.org/">Freemarker</a>, <a href="http://www.groovy-lang.org/">Groovy</a>, <a href="http://www.thymeleaf.org/">Thymeleaf</a>, <a href="https://github.com/neuland/jade4j">Jade</a> and <a href="https://pebbletemplates.io/">Pebble</a> based templates & scripting support.</p>
<h4>CSS Framework Support</h4>
<p>Easily integrate CSS frameworks such as <a href="http://getbootstrap.com/">Bootstrap</a> and <a href="http://foundation.zurb.com/">Foundation</a>.</p>
<h4>Custom Metadata</h4>
<p>Add as much metadata to content as you like, also exposed to templates.</p>
<h4>Storage Support</h4>
<p>Store your site content in Dropbox, CVS, SVN, Git or whatever you want.</p>
</div>
</div>
<div class="row-fluid marketing">
<div class="span3 text-center">
<a href="https://twitter.com/javabake" class="twitter-follow-button" data-show-count="false" data-dnt="true">Follow @javabake</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
<div class="span3 text-center">
<a href="https://travis-ci.com/github/jbake-org/jbake"><img src="https://img.shields.io/travis/com/jbake-org/jbake/master.svg" /></a>
</div>
<div class="span3 text-center">
<a href="https://ci.appveyor.com/project/jbake-org/jbake"><img src="https://ci.appveyor.com/api/projects/status/2q7hvg03wsjx953b?svg=true" /></a>
</div>
<div class="span3 text-center">
<a href="https://gitter.im/jbake-org/jbake"><img src="https://badges.gitter.im/jbake-org/jbake.svg" /></a>
</div>
</div>
<hr />
<#include "footer.ftl">