1
1
---
2
- layout: default
2
+ layout: basic
3
+ headline: Welcome to Squeak< span class ="hidden-xs "> /Smalltalk</ span >
4
+ welcome: >
5
+ Squeak is an open-source Smalltalk programming system with fast execution
6
+ environments for all major platforms. It features the Morphic framework,
7
+ which promotes low effort graphical, interactive application development and
8
+ maintenance. Many projects have been successfully created with Squeak. They
9
+ cover a wide range of domains such as education, multimedia, gaming, research,
10
+ and commerce.
11
+
12
+ download_link: http://ftp.squeak.org/4.5/Squeak-4.5-All-in-One.zip
13
+ download_more: /downloads/
14
+
15
+ sub_button_group:
16
+ - title: News
17
+ href: http://news.squeak.org/
18
+ icon: newspaper-o
19
+
20
+ - title: Bugs
21
+ href: http://bugs.squeak.org/view_all_bug_page.php
22
+ icon: bug
23
+
24
+ - title: Donate
25
+ href: "#"
26
+ class: donate-button
27
+ icon: heart
28
+
29
+ screenshots:
30
+ - img-src: img/screenshots/writing.png
31
+ caption: "Tools for browsing, searching, and writing Smalltalk code"
32
+
33
+ - img-src: img/screenshots/executing.png
34
+ caption: "Run-time information in concurrent debugging sessions with direct code updates"
35
+
36
+ - img-src: img/screenshots/scripting.png
37
+ caption: "Script, explore, and study almost everything in the environment"
38
+
39
+ - img-src: img/screenshots/versioning.png
40
+ caption: "Automatic change tracking and distributed source code versioning tools"
3
41
---
4
42
< div class ="container ">
5
43
< div class ="row ">
6
44
< div class ="col-md-6 col-lg-6 ">
7
45
< img id ="squeak-logo " src ="{{ basePath }}{{ site.staticurl }}img/balloon.svg " alt ="" class ="img-responsive img-center ">
8
46
</ div >
9
47
< div id ="welcome-text " class ="col-md-6 col-lg-6 ">
10
- < h2 > {{ site.data.index.title }}</ h2 >
11
- < div > {{ site.data.index .welcome }}</ div >
48
+ < h2 > {{ page.headline }}</ h2 >
49
+ < div > {{ page .welcome }}</ div >
12
50
< div class ="text-center ">
13
- < a id ="download-button " class ="btn btn-primary " href ="{{ site.data.index.download-link }} " target ="_blank " role ="button ">
51
+ < a id ="download-button " class ="btn btn-primary " href ="{{ page.download_link }} " target ="_blank " role ="button ">
14
52
< i class ="fa fa-windows fa-lg "> </ i >
15
53
< i class ="fa fa-apple fa-lg "> </ i >
16
54
< i class ="fa fa-linux fa-lg "> </ i >
17
55
Download
18
56
</ a >
19
- < p > < a href ="{{ basePath }}{{ site.data.index.download-more }} "> More...</ a > </ p >
57
+ < p > < a href ="{{ basePath }}{{ page.download_more }} "> More...</ a > </ p >
20
58
21
59
< div id ="sub-button-group " class ="btn-group btn-group-sm " role ="group " aria-label ="... ">
22
- {% include sub_button_group.html %}
60
+ {% for button in page.sub_button_group %}
61
+ < a class ="{% if button.class %}{{ button.class }} {% endif %}btn btn-default " href ="{% if button.href %}{{ button.href }}{% else %}#{% endif %} " target ="_blank " role ="button ">
62
+ < i class ="fa fa-{{ button.icon }} "> </ i >
63
+ {{ button.title }}
64
+ </ a >
65
+ {% endfor %}
23
66
</ div >
24
67
</ div >
25
68
</ div >
@@ -29,7 +72,23 @@ <h2>{{ site.data.index.title }}</h2>
29
72
< div id ="screnshot-wrapper ">
30
73
< div class ="container ">
31
74
< div id ="screenshots " class ="row ">
32
- {% include screenshots.html %}
75
+ {% for screenshot in page.screenshots %}
76
+ < div class ="col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center slideshow-item " style ="{{ currentStyle }} ">
77
+ < a href ="# " class ="screenshot-img ">
78
+ < img src ="{{ screenshot.img-src }} " alt ="" class ="img-responsive img-center ">
79
+ </ a >
80
+ < p class ="lead ">
81
+ {{ screenshot.caption }}
82
+ < a href ="# " class ="screenshot-button pull-left " data-target ="left ">
83
+ < i class ="fa fa-chevron-left "> </ i >
84
+ </ a >
85
+ < a href ="# " class ="screenshot-button pull-right " data-target ="right ">
86
+ < i class ="fa fa-chevron-right "> </ i >
87
+ </ a >
88
+ </ p >
89
+ </ div >
90
+ {% assign currentStyle = "display: none" %}
91
+ {% endfor %}
33
92
</ div >
34
93
</ div >
35
94
</ div >
0 commit comments