forked from iluwatar/java-design-patterns-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.html
26 lines (23 loc) · 1.12 KB
/
readme.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
---
layout: default
link-title: Home
title: Home - Java Design Patterns
description: This site showcases Java Design Patterns. The solutions have been developed by experienced programmers and architects from the open source community. The patterns can be browsed by their high level descriptions or by looking at their source code. The source code examples are well commented and can be thought as programming tutorials how to implement a specific pattern. We use the most popular battle-proven open source Java technologies.
permalink: /
icon: fa-book
page-index: 0
---
<!-- This file has to lie in the root because it references "patterns/README.md" relatively
Jekyll doesnt support absolute including without adding plugins -->
<div id="index" class="row">
<div class="col-md-12">
<div class="content-area page">
<!-- These liquid lines mustn't have correct indent because it would trigger the automatic code formatting
of kramdown and convert html comments to code -->
{% capture maincontent %}
{% include_relative patterns/README.md %}
{% endcapture %}
{{ maincontent | markdownify }}
</div>
</div>
</div>