forked from iluwatar/java-design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.html
More file actions
24 lines (21 loc) · 655 Bytes
/
readme.html
File metadata and controls
24 lines (21 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
title: Readme
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>