Skip to content

Commit c56220e

Browse files
committed
Pushing to github.
0 parents  commit c56220e

28 files changed

+1398
-0
lines changed

_config.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
title: "Scala IDE for Eclipse"
2+
keywords:
3+
- Scala
4+
- IDE
5+
- Eclipse
6+
- Scala Programming Language
7+
- ScalaIDE
8+
- ScalaIDE Download
9+
10+
permalink: /:categories/:title.html
11+

_includes/footer.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{% include footermenu.txt %}
2+
</body>
3+
</html>

_includes/footermenu.txt

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<div class="footer">
2+
<div class="container">
3+
<ul>
4+
<li><h5>Download</h5></li>
5+
<li><a href="#">Current</a></li>
6+
<li><a href="#">Nightly</a></li>
7+
</ul>
8+
<ul>
9+
<li><h5>Documentation</h5></li>
10+
<li><a href="#">Getting Started</a></li>
11+
<li><a href="#">Tutorials</a></li>
12+
</ul>
13+
<ul>
14+
<li><h5>Contribute</h5></li>
15+
<li><a href="https://github.com/scala-ide/scala-ide">Source Code</a></li>
16+
<li><a href="#">Developer Documentation</a></li>
17+
<li><a href="#">Developer Mailing List</a></li>
18+
</ul>
19+
<ul>
20+
<li><img src="{{ site.baseurl }}/resources/images/watermark.png" align="center"/></li>
21+
</ul>
22+
</div>
23+
<div class="container copyright">
24+
<p>
25+
<a href="http://creativecommons.org/licenses/by/2.0/uk/">Creative Commons</a>, <a href="http://www.typesafe.com">Typesafe Inc.</a>
26+
</p>
27+
</div>
28+
</div>

_includes/frontpage.txt

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<div class="slider">
2+
<div class="container">
3+
<div class="row">
4+
<div class="span8">
5+
<div class="rounded-corner-box">
6+
<h2>Epic text, for an epic plugin</h2>
7+
<p>Some more epic text here, some kind of sales pitch. <br/>Scala tooling- evolved.</p>
8+
<p>Some more epic text here, some kind of sales pitch. Some more epic text here, some kind of sales pitch</p>
9+
<br/><a href="#" class="btn large success"><b>Get it now!</b></a>
10+
</div>
11+
<span class="arrow"><img src="{{ site.baseurl }}/resources/images/arrow.png" /></span>
12+
</div>
13+
<div class="span8">
14+
<img src="{{ site.baseurl }}/resources/images/eclipse.png" width="425px">
15+
</div>
16+
</div>
17+
</div>
18+
</div>
19+
20+
<div class="bottom">
21+
<div class="container">
22+
<div class="row">
23+
<div class="span11">
24+
<h1>Features</h1>
25+
<div class="row">
26+
<div class="span5">
27+
<div class="frame"><img src ="{{ site.baseurl }}/resources/images/codecompletion.jpg" align="left"></div>
28+
<h4>Code Completion</h4>
29+
now with implicits resolved on the fly and included in your list of snippets to choose from.
30+
</div>
31+
<div class="span5">
32+
<div class="frame"><img src ="{{ site.baseurl }}/resources/images/codecompletion.jpg" align="left"></div>
33+
<h4>Code Completion</h4>
34+
now with implicits resolved on the fly and included in your list of snippets to choose from.
35+
</div>
36+
</div>
37+
<div class="row">
38+
<div class="span5">
39+
<div class="frame"><img src ="{{ site.baseurl }}/resources/images/codecompletion.jpg" align="left"></div>
40+
<h4>Code Completion</h4>
41+
now with implicits resolved on the fly and included in your list of snippets to choose from.
42+
</div>
43+
<div class="span5">
44+
<div class="frame"><img src ="{{ site.baseurl }}/resources/images/codecompletion.jpg" align="left"></div>
45+
<h4>Code Completion</h4>
46+
now with implicits resolved on the fly and included in your list of snippets to choose from.
47+
</div>
48+
</div>
49+
<div class="row">
50+
<div class="span5">
51+
<div class="frame"><img src ="{{ site.baseurl }}/resources/images/codecompletion.jpg" align="left"></div>
52+
<h4>Code Completion</h4>
53+
now with implicits resolved on the fly and included in your list of snippets to choose from.
54+
</div>
55+
<div class="span5">
56+
<div class="frame"><img src ="{{ site.baseurl }}/resources/images/codecompletion.jpg" align="left"></div>
57+
<h4>Code Completion</h4>
58+
now with implicits resolved on the fly and included in your list of snippets to choose from.
59+
</div>
60+
</div>
61+
</div>
62+
<div class="span5">
63+
<h1>Twitter</h1>
64+
</div>
65+
</div>
66+
</div>
67+
</div>

_includes/header.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
5+
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
6+
{% if page.description %}
7+
<meta name="description" content="{{ page.description }}" />
8+
{% endif %}
9+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
10+
11+
<link rel="icon" type="image/png" href="{{ site.baseurl }}/resources/favicon.ico">
12+
13+
<!-- Bootstrap JS and CSS -->
14+
<link rel="stylesheet" href="{{ site.baseurl }}/resources/stylesheets/bootstrap.css" type="text/css" />
15+
16+
<!-- Base stylesheet for all pages -->
17+
<link rel="stylesheet" href="{{ site.baseurl }}/resources/stylesheets/base.css" type="text/css" />
18+
19+
</head>
20+
<body>

_includes/topbar.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<div class="top-bar">
2+
<div class="top-bar-inner">
3+
<div class="container">
4+
<a class="brand" href="{{ site.baseurl }}/index.html"><img src="{{ site.baseurl }}/resources/images/logo.png" height="70px"></a>
5+
<ul class="nav">
6+
<li><a href="/docs">Documentation</a></li>
7+
<li><a href="downloads.html">Downloads</a></li>
8+
<li><a href="contribute.html">Contribute</a></li>
9+
</ul>
10+
</div>
11+
</div>
12+
</div>

_includes/twitter.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<ul id="twitter">
2+
<li>
3+
<span class="twit">"require: - play - crud" in dependencies.yml "module.crud=${play.path}/modules/crud" in application.conf @>em<playframework>/em the deal ???</span>
4+
<span class="arrow"></span>
5+
<a class="source" href="http://twitter.com/LeMeteore">
6+
<img width="32" src="http://a2.twimg.com/profile_images/1456439613/DSC04809_normal.JPG"></a> <span class="said">said 1 hour ago</span>
7+
</li> </ul>

_layouts/index.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: default
3+
---
4+
5+
{% include header.txt %}
6+
{% include topbar.txt %}
7+
{% include frontpage.txt %}
8+
{% include footer.txt %}

_site/index.html

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
5+
<title>Scala IDE for Eclipse</title>
6+
7+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
8+
9+
<link rel="icon" type="image/png" href="/resources/favicon.ico">
10+
11+
<!-- Bootstrap JS and CSS -->
12+
<link rel="stylesheet" href="/resources/stylesheets/bootstrap.css" type="text/css" />
13+
14+
<!-- Base stylesheet for all pages -->
15+
<link rel="stylesheet" href="/resources/stylesheets/base.css" type="text/css" />
16+
17+
</head>
18+
<body>
19+
20+
<div class="top-bar">
21+
<div class="top-bar-inner">
22+
<div class="container">
23+
<a class="brand" href="/index.html"><img src="/resources/images/logo.png" height="70px"></a>
24+
<ul class="nav">
25+
<li><a href="/docs">Documentation</a></li>
26+
<li><a href="downloads.html">Downloads</a></li>
27+
<li><a href="contribute.html">Contribute</a></li>
28+
</ul>
29+
</div>
30+
</div>
31+
</div>
32+
<div class="slider">
33+
<div class="container">
34+
<div class="row">
35+
<div class="span8">
36+
<div class="rounded-corner-box">
37+
<h2>Epic text, for an epic plugin</h2>
38+
<p>Some more epic text here, some kind of sales pitch. <br/>Scala tooling- evolved.</p>
39+
<p>Some more epic text here, some kind of sales pitch. Some more epic text here, some kind of sales pitch</p>
40+
<br/><a href="#" class="btn large success"><b>Get it now!</b></a>
41+
</div>
42+
<span class="arrow"><img src="/resources/images/arrow.png" /></span>
43+
</div>
44+
<div class="span8">
45+
<img src="/resources/images/eclipse.png" width="425px">
46+
</div>
47+
</div>
48+
</div>
49+
</div>
50+
51+
<div class="bottom">
52+
<div class="container">
53+
<div class="row">
54+
<div class="span11">
55+
<h1>Features</h1>
56+
<div class="row">
57+
<div class="span5">
58+
<div class="frame"><img src ="/resources/images/codecompletion.jpg" align="left"></div>
59+
<h4>Code Completion</h4>
60+
now with implicits resolved on the fly and included in your list of snippets to choose from.
61+
</div>
62+
<div class="span5">
63+
<div class="frame"><img src ="/resources/images/codecompletion.jpg" align="left"></div>
64+
<h4>Code Completion</h4>
65+
now with implicits resolved on the fly and included in your list of snippets to choose from.
66+
</div>
67+
</div>
68+
<div class="row">
69+
<div class="span5">
70+
<div class="frame"><img src ="/resources/images/codecompletion.jpg" align="left"></div>
71+
<h4>Code Completion</h4>
72+
now with implicits resolved on the fly and included in your list of snippets to choose from.
73+
</div>
74+
<div class="span5">
75+
<div class="frame"><img src ="/resources/images/codecompletion.jpg" align="left"></div>
76+
<h4>Code Completion</h4>
77+
now with implicits resolved on the fly and included in your list of snippets to choose from.
78+
</div>
79+
</div>
80+
<div class="row">
81+
<div class="span5">
82+
<div class="frame"><img src ="/resources/images/codecompletion.jpg" align="left"></div>
83+
<h4>Code Completion</h4>
84+
now with implicits resolved on the fly and included in your list of snippets to choose from.
85+
</div>
86+
<div class="span5">
87+
<div class="frame"><img src ="/resources/images/codecompletion.jpg" align="left"></div>
88+
<h4>Code Completion</h4>
89+
now with implicits resolved on the fly and included in your list of snippets to choose from.
90+
</div>
91+
</div>
92+
</div>
93+
<div class="span5">
94+
<h1>Twitter</h1>
95+
</div>
96+
</div>
97+
</div>
98+
</div>
99+
100+
<div class="footer">
101+
<div class="container">
102+
<ul>
103+
<li><h5>Download</h5></li>
104+
<li><a href="#">Current</a></li>
105+
<li><a href="#">Nightly</a></li>
106+
</ul>
107+
<ul>
108+
<li><h5>Documentation</h5></li>
109+
<li><a href="#">Getting Started</a></li>
110+
<li><a href="#">Tutorials</a></li>
111+
</ul>
112+
<ul>
113+
<li><h5>Contribute</h5></li>
114+
<li><a href="https://github.com/scala-ide/scala-ide">Source Code</a></li>
115+
<li><a href="#">Developer Documentation</a></li>
116+
<li><a href="#">Developer Mailing List</a></li>
117+
</ul>
118+
<ul>
119+
<li><img src="/resources/images/watermark.png" align="center"/></li>
120+
</ul>
121+
</div>
122+
<div class="container copyright">
123+
<p>
124+
<a href="http://creativecommons.org/licenses/by/2.0/uk/">Creative Commons</a>, <a href="http://www.typesafe.com">Typesafe Inc.</a>
125+
</p>
126+
</div>
127+
</div>
128+
</body>
129+
</html>

_site/resources/favicon.ico

570 Bytes
Binary file not shown.

_site/resources/images/arrow.png

1.38 KB
Loading

_site/resources/images/bg.jpg

14.1 KB
Loading
8.27 KB
Loading

_site/resources/images/eclipse.png

194 KB
Loading

_site/resources/images/logo.png

13.8 KB
Loading

_site/resources/images/watermark.png

14.7 KB
Loading

0 commit comments

Comments
 (0)