forked from iluwatar/java-design-patterns-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
principles.html
35 lines (30 loc) · 1.2 KB
/
principles.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
34
35
---
layout: default
link-title: Principles
title: Principles - Java Design Patterns
description: Software design principles are pieces of condensed wisdom collected from best architects with decades of experience.
permalink: /principles/
icon: fa-wrench
page-index: 2
---
<!-- This file has to lie in the root because it references "programming-principles/README.md" relatively
Jekyll doesnt support absolute including without adding plugins -->
<div class="row">
<div class="col-md-12">
<div class="readme content-area page">
{% capture maincontent %}
{% include_relative programming-principles/README.md %}
{% endcapture %}
<article>
{{ maincontent | remove: "# Programming Principles" | markdownify }}
</article>
<a class="btn btn-primary" href="https://github.com/webpro/programming-principles/blob/gh-pages/README.md" target="_blank">
<span class="glyphicon glyphicon-new-window"></span>
View Source on Github
</a>
<hr class="dashed">
{% include author.html author="pro" %}
{% include disqus.html %}
</div>
</div>
</div>