Skip to content

Commit bc121b1

Browse files
committed
First version
0 parents  commit bc121b1

14 files changed

+401
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

_config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
name: Gtomee - Android Game Studio
2+
markdown: redcarpet
3+
pygments: true

_layouts/default.html

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="description" content="">
8+
<meta name="author" content="">
9+
<!--<link rel="shortcut icon" href="favicon.png">-->
10+
11+
<title>Gtomee - {{ page.title }}</title>
12+
13+
<!-- Bootstrap core CSS -->
14+
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
15+
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
16+
17+
<!-- syntax highlighting CSS -->
18+
<link rel="stylesheet" href="/css/syntax.css">
19+
20+
<!-- Custom CSS -->
21+
<link rel="stylesheet" href="/css/main.css">
22+
23+
<!-- Custom styles for this template
24+
<link href="jumbotron-narrow.css" rel="stylesheet">-->
25+
26+
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
27+
<!--[if lt IE 9]>
28+
<script src="../../assets/js/html5shiv.js"></script>
29+
<script src="../../assets/js/respond.min.js"></script>
30+
<![endif]-->
31+
</head>
32+
33+
<body>
34+
35+
<div class="container">
36+
<div class="header">
37+
<ul class="nav nav-pills pull-right">
38+
{% for node in site.pages %}
39+
{% if page.url == node.url %}
40+
<li class="active"><a href="{{node.url}}" class="active">{{node.title}}</a></li>
41+
{% else %}
42+
<li><a href="{{node.url}}">{{node.title}}</a></li>
43+
{% endif %}
44+
{% endfor %}
45+
</ul>
46+
<h3 class="text-muted">{{ site.name }}</h3>
47+
</div>
48+
49+
{{ content }}
50+
51+
<div class="footer">
52+
<p style="float:right;">
53+
<a href="https://github.com/gtomee"><i class="icon-github-alt"></i> Github</a> |
54+
<a href="https://twitter.com/GtomeeStudio"><i class="icon-twitter-sign"></i> Twitter</a> |
55+
<a href="https://www.facebook.com/Gtomee"><i class="icon-facebook-sign"></i> Facebook</a> |
56+
<a href="http://plus.google.com/104116699946266870683"><i class="icon-google-plus-sign"></i> Google +</a>
57+
</p>
58+
<p>&copy; Gtomee 2013</p>
59+
</div>
60+
61+
</div> <!-- /container -->
62+
63+
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
64+
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
65+
</body>
66+
</html>
67+
68+
69+

_layouts/post.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="row">
6+
<div class="col-lg-12">
7+
<h2>{{ page.title }}</h2>
8+
<p class="meta"><i class="icon-calendar"></i> {{ page.date | date_to_string }}</p>
9+
10+
<div class="post">
11+
{{ content }}
12+
</div>
13+
</div>
14+
</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: post
3+
title: "Welcome to our new blog!"
4+
date: 2013-10-16 13:30:00
5+
categories: news
6+
---
7+
8+
Hi,
9+
10+
We are planning to shut down our server at gtomee.com, so now this is the place where you'll be able to keep in touch !
11+
12+
Thanks for reading our blog ;)

about.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: default
3+
title: About
4+
---
5+
6+
7+
<div class="row">
8+
<div class="col-lg-12">
9+
<p>Gtomee is composed by two computer science college students eager to provide <strong>fun for everybody</strong>. We create entertaining android apps and distribute them on Android market <strong>for free</strong>.</p>
10+
11+
<p>Thibaut Patel (<a href="twitter.com/thibpat">@thibpat</a>) and Jérémy Tuloup (<a href="twitter.com/jtuloup">@jtuloup</a>)</p>
12+
</div>
13+
</div>

css/main.css

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
/*****************************************************************************/
2+
/*
3+
/* Common
4+
/*
5+
/*****************************************************************************/
6+
7+
/* Space out content a bit */
8+
body {
9+
padding-top: 20px;
10+
padding-bottom: 20px;
11+
}
12+
13+
/* Everything but the jumbotron gets side spacing for mobile first views */
14+
.header,
15+
.marketing,
16+
.footer {
17+
padding-left: 15px;
18+
padding-right: 15px;
19+
}
20+
21+
/* Custom page header */
22+
.header {
23+
border-bottom: 1px solid #e5e5e5;
24+
}
25+
/* Make the masthead heading the same height as the navigation */
26+
.header h3 {
27+
margin-top: 0;
28+
margin-bottom: 0;
29+
line-height: 40px;
30+
padding-bottom: 19px;
31+
}
32+
33+
/* Custom page footer */
34+
.footer {
35+
padding-top: 19px;
36+
color: #777;
37+
border-top: 1px solid #e5e5e5;
38+
}
39+
40+
/* Customize container */
41+
@media (min-width: 768px) {
42+
.container {
43+
max-width: 730px;
44+
}
45+
}
46+
.container-narrow > hr {
47+
margin: 30px 0;
48+
}
49+
50+
/* Main marketing message and sign up button */
51+
.jumbotron {
52+
text-align: center;
53+
border-bottom: 1px solid #e5e5e5;
54+
}
55+
.jumbotron .btn {
56+
font-size: 21px;
57+
padding: 14px 24px;
58+
}
59+
60+
/* Supporting marketing content */
61+
.marketing {
62+
margin: 40px 0;
63+
}
64+
.marketing p + h4 {
65+
margin-top: 28px;
66+
}
67+
68+
/* Responsive: Portrait tablets and up */
69+
@media screen and (min-width: 768px) {
70+
/* Remove the padding we set earlier */
71+
.header,
72+
.marketing,
73+
.footer {
74+
padding-left: 0;
75+
padding-right: 0;
76+
}
77+
/* Space out the masthead */
78+
.header {
79+
margin-bottom: 30px;
80+
}
81+
/* Remove the bottom border on the jumbotron for visual effect */
82+
.jumbotron {
83+
border-bottom: 0;
84+
}
85+
}
86+
87+
p { margin: 1em 0; }
88+
89+
/*****************************************************************************/
90+
/*
91+
/* Home
92+
/*
93+
/*****************************************************************************/
94+
ul.posts {
95+
list-style-type: none;
96+
margin-bottom: 2em;
97+
}
98+
99+
ul.posts li {
100+
line-height: 1.75em;
101+
}
102+
103+
104+
/*****************************************************************************/
105+
/*
106+
/* Site
107+
/*
108+
/*****************************************************************************/
109+
110+
.footer {
111+
margin-top: 2em;
112+
overflow: hidden;
113+
}
114+
115+
/*****************************************************************************/
116+
/*
117+
/* Posts
118+
/*
119+
/*****************************************************************************/
120+
121+
/* standard */
122+
.post pre {
123+
border: 1px solid #ddd;
124+
background-color: #eef;
125+
padding: 0 .4em;
126+
}
127+
128+
.post ul, .post ol {
129+
margin-left: 1.35em;
130+
}
131+
132+
.post code {
133+
border: 1px solid #ddd;
134+
background-color: #eef;
135+
padding: 0 .2em;
136+
}
137+
138+
.post pre code {
139+
border: none;
140+
}
141+
142+
/* terminal */
143+
.post pre.terminal {
144+
border: 1px solid #000;
145+
background-color: #333;
146+
color: #FFF;
147+
}
148+
149+
.post pre.terminal code {
150+
background-color: #333;
151+
}

css/syntax.css

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
.highlight { background: #ffffff; }
2+
.highlight .c { color: #999988; font-style: italic } /* Comment */
3+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4+
.highlight .k { font-weight: bold } /* Keyword */
5+
.highlight .o { font-weight: bold } /* Operator */
6+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7+
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11+
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12+
.highlight .ge { font-style: italic } /* Generic.Emph */
13+
.highlight .gr { color: #aa0000 } /* Generic.Error */
14+
.highlight .gh { color: #999999 } /* Generic.Heading */
15+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16+
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17+
.highlight .go { color: #888888 } /* Generic.Output */
18+
.highlight .gp { color: #555555 } /* Generic.Prompt */
19+
.highlight .gs { font-weight: bold } /* Generic.Strong */
20+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
21+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
22+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
23+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
24+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
26+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27+
.highlight .m { color: #009999 } /* Literal.Number */
28+
.highlight .s { color: #d14 } /* Literal.String */
29+
.highlight .na { color: #008080 } /* Name.Attribute */
30+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
31+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32+
.highlight .no { color: #008080 } /* Name.Constant */
33+
.highlight .ni { color: #800080 } /* Name.Entity */
34+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36+
.highlight .nn { color: #555555 } /* Name.Namespace */
37+
.highlight .nt { color: #000080 } /* Name.Tag */
38+
.highlight .nv { color: #008080 } /* Name.Variable */
39+
.highlight .ow { font-weight: bold } /* Operator.Word */
40+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
41+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
42+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
43+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
44+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
45+
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
46+
.highlight .sc { color: #d14 } /* Literal.String.Char */
47+
.highlight .sd { color: #d14 } /* Literal.String.Doc */
48+
.highlight .s2 { color: #d14 } /* Literal.String.Double */
49+
.highlight .se { color: #d14 } /* Literal.String.Escape */
50+
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51+
.highlight .si { color: #d14 } /* Literal.String.Interpol */
52+
.highlight .sx { color: #d14 } /* Literal.String.Other */
53+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
54+
.highlight .s1 { color: #d14 } /* Literal.String.Single */
55+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
56+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
58+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
59+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
60+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */

games.html

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
layout: default
3+
title: Games
4+
---
5+
6+
7+
<div class="row">
8+
<div class="col-lg-12">
9+
10+
<img style="float:right" src="/img/logo-eatthatsnow.png"></img>
11+
<h3>Eat That Snow <small><a href="https://play.google.com/store/apps/details?id=com.gtomee.eatthatsnow"><i class="icon-download"></i> Download now</a></small></h3>
12+
<h4>Description</h4>
13+
<p>
14+
<i class="icon-quote-left icon-4x pull-left icon-muted"></i>Ready to jump ? So get started with Eat That Snow !<br /><br />
15+
Eat That Snow is a funny arcade game which takes place in a colorful world, warm and sunny.<br />
16+
You are the snowman and you want to reach the freezer. If you don’t, you will melt…<br />
17+
So eat snowballs to increase your life, and try to avoid fireballs !<br /><br />
18+
Controls are very simple : just tap the screen to jump !<br />
19+
Do you think you are done with this game ?<br />
20+
Wrong !<br />
21+
You can collect all the stars of each level to complete Eat That Snow !<br /><br />
22+
Music: "Beat Dat Snow", by Benjamin Bouvier
23+
</p>
24+
<h4>Video</h4>
25+
<iframe width="640" height="360" src="//www.youtube.com/embed/mGjGNhDIm-s?rel=0" frameborder="0" allowfullscreen></iframe>
26+
</div>
27+
</div>
28+
29+
<hr />
30+
31+
<div class="row">
32+
<div class="col-lg-12">
33+
34+
<img style="float:right" src="/img/logo-crash.png"></img>
35+
<h3>Crash <small><a href="https://play.google.com/store/apps/details?id=com.gtomee.crash"><i class="icon-download"></i> Download now</a></small></h3>
36+
<h4>Description</h4>
37+
<p>
38+
<i class="icon-quote-left icon-4x pull-left icon-muted"></i>Don't crash ! Stay on the road as long as you can !<br />
39+
Get in the space ship, avoid the blue lines, stay on the road and try to perform the best score.<br />
40+
Do your best to beat all the other players of the online ranking !<br />
41+
Control your ship using the accelerometer or the touch screen.
42+
</p>
43+
<h4>Screenshots</h4>
44+
<div class="col-lg-6">
45+
<img src="/img/screen-crash-1.jpg" alt="Screenshot 1" class="img-responsive"></img>
46+
</div>
47+
<div class="col-lg-6">
48+
<img src="/img/screen-crash-2.jpg" alt="Screenshot 2" class="img-responsive"></img>
49+
</div>
50+
</div>
51+
</div>

img/logo-crash.png

20.7 KB
Loading

img/logo-eatthatsnow.png

22.9 KB
Loading

img/screen-crash-1.jpg

28.2 KB
Loading

img/screen-crash-2.jpg

11.9 KB
Loading

0 commit comments

Comments
 (0)