-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (114 loc) · 5.53 KB
/
index.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
---
title: Home Page
meta-title: "DelphiDabbler.com | Open Source Programs, Delphi Code, Articles & Tips"
---
<h1 roll="heading">Welcome to DelphiDabbler.com</h1>
<div class="box">
<p class="text-center strapline">
One hobbyist programmer's dabblings in the world of open source Delphi programming.
</p>
<div class="text-right link-boxes">
<a href="{{ site.data.core.github-url }}" aria-label="{{ site.data.core.github-link-title }}" class="label label-primary"><span class="fa fa-lg fa-fw fa-github" aria-hidden="true"></span></a>
<a href="{{ site.data.core.dd-blog-url }}" aria-label="{{ site.data.core.dd-blog-link-title }}" class="label label-primary"><span class="fa fa-lg fa-fw fa-pencil-square-o fa-x-pad-right" aria-hidden="true"></span>Blog</a>
</div>
</div>
<div class="panel-list-group">
<div class="list-group">
<div class="row">
<div class="col-sm-6 col-lg-4">
<a class="list-group-item" href="{{site.data.core.apps-link}}"aria-label="{{ site.data.core.apps-link-title }}">
<section role="section" aria-labelledby="codelib">
<div class="panel panel-primary">
<header class="panel-heading" id="apps">
<h2>Applications</h2>
</header>
</div>
<div class="panel-body">
<p>There are several open source applications here.</p>
<p>The main one is <em>CodeSnip</em>, a code bank specialising in Pascal code snippets.</p>
<p>Other apps are mainly mini development tools, but some are just programming exercises.</p>
</div>
</section>
</a>
</div>
<div class="col-sm-6 col-lg-4">
<a class="list-group-item" href="{{site.data.core.lib-link}}"aria-label="{{ site.data.core.lib-link-title }}">
<section role="section" aria-labelledby="codelib">
<div class="panel panel-primary">
<header class="panel-heading" id="codelib">
<h2>Code Library</h2>
</header>
</div>
<div class="panel-body">
<p>The code library is a collection of reusable components and classes along with a solitary IDE extension.</p>
</div>
</section>
</a>
</div>
<!-- Clear the sm & md cols if their content doesn't match in height -->
<div class="clearfix visible-md-block visible-sm-block role="presentation""></div>
<div class="col-sm-6 col-lg-4">
<a class="list-group-item" href="{{site.data.core.snippets-link}}"aria-label="{{ site.data.core.snippets-link-title }}">
<section role="section" aria-labelledby="snippets">
<div class="panel panel-primary">
<header class="panel-heading" id="snippets">
<h2>Code Snippets</h2>
</header>
</div>
<div class="panel-body">
<p>There are two main sources of code snippets.</p>
<p>The <em>Code Snippets Database</em> contains hundreds of useful Pascal routines, classes, types etc.</p>
<p><em>SWAG</em> is clone of the old <strong>S</strong>ource<strong>W</strong>are <strong>A</strong>rchive <strong>G</strong>roup database. It's dated but still contains some useful information.</em>
</div>
</section>
</a>
</div>
<!-- Clear the lg cols if their content doesn't match in height -->
<div class="clearfix visible-lg-block" role="presentation"></div>
<div class="col-sm-6 col-lg-4">
<a class="list-group-item" href="{{site.data.core.articles-link}}"aria-label="{{ site.data.core.articles-link-title }}">
<section role="section" aria-labelledby="articles">
<div class="panel panel-primary">
<header class="panel-heading" id="articles">
<h2>Articles</h2>
</header>
</div>
<div class="panel-body">
<p>Several full length articles explaining various aspects of Delphi programming.</p>
</div>
</section>
</a>
</div>
<!-- Clear the sm & md cols if their content doesn't match in height -->
<div class="clearfix visible-md-block visible-sm-block" role="presentation"></div>
<div class="col-sm-6 col-lg-4">
<a class="list-group-item" href="{{site.data.core.tips-link}}"aria-label="{{ site.data.core.tips-link-title }}">
<section role="section" aria-labelledby="tips">
<div class="panel panel-primary">
<header class="panel-heading" id="tips">
<h2>Hints & Tips</h2>
</header>
</div>
<div class="panel-body">
<p>A collection of hundreds of hints and tips harvested from all over the web.</p>
</div>
</section>
</a>
</div>
<div class="col-sm-6 col-lg-4">
<a class="list-group-item" href="{{site.data.core.docs-link}}"aria-label="{{ site.data.core.docs-link-title }}">
<section role="section" aria-labelledby="docs">
<div class="panel panel-primary">
<header class="panel-heading" id="docs">
<h2>Documentation</h2>
</header>
</div>
<div class="panel-body">
<p>There's plenty of documentation available for all the applications, the code library and snippets. There's also a small collection of miscellaneous Delphi notes.</p>
</div>
</section>
</a>
</div>
</div> <!-- /.row -->
</div>
</div>