-
Notifications
You must be signed in to change notification settings - Fork 49
/
snippets.html
33 lines (27 loc) · 1.01 KB
/
snippets.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
27
28
29
30
31
32
33
---
layout: default
link-title: Snippets
title: Snippets - Java Design Patterns
description: 30-seconds-of-java is a collection of reusable tested Java 11 compatible code snippets that you can understand in 30 seconds or less.
permalink: /snippets.html
icon: fa-pencil
page-index: 3
---
<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 30-seconds-of-java/README.md %}
{% endcapture %}
{{ maincontent | markdownify }}
<div style="margin-top: 25px;">
<a class="btn btn-primary" href="https://github.com/iluwatar/30-seconds-of-java" target="_blank">
<span class="glyphicon glyphicon-new-window"></span>
View Source on Github
</a>
</div>
</div>
</div>
</div>