diff --git a/static/g5722.png b/static/g5722.png new file mode 100644 index 0000000..8a60690 Binary files /dev/null and b/static/g5722.png differ diff --git a/static/senchalogo.png b/static/senchalogo.png new file mode 100644 index 0000000..ebf7805 Binary files /dev/null and b/static/senchalogo.png differ diff --git a/static/senchalogo.svg b/static/senchalogo.svg new file mode 100644 index 0000000..5902b9b --- /dev/null +++ b/static/senchalogo.svg @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/static/senchalogo2.png b/static/senchalogo2.png new file mode 100644 index 0000000..a237ed2 Binary files /dev/null and b/static/senchalogo2.png differ diff --git a/static/senchalogo2.svg b/static/senchalogo2.svg new file mode 100644 index 0000000..5db757d --- /dev/null +++ b/static/senchalogo2.svg @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + SENCHA + diff --git a/templates/contact.html b/templates/contact.html index 025735f..5511702 100644 --- a/templates/contact.html +++ b/templates/contact.html @@ -11,7 +11,34 @@ $("document").ready( function(){
-

Contact!

+ +

Basic informations about the author

+
+
+ some photo +
+ +
+

+ My name is Justyna Ilczuk. I study applied physics at Warsaw University of Technology. I'm in my second year there. + For more info, look at my home page. +

+
+ + +
+

How to contact

+
+ +
+

+ Use this email adress justyna [dot] ilczuk [at] gmail [dot] com +

+
+ + +
+
{% endblock %} \ No newline at end of file diff --git a/templates/examples.html b/templates/examples.html index d59587b..b8d7e36 100644 --- a/templates/examples.html +++ b/templates/examples.html @@ -11,7 +11,54 @@ $("document").ready( function(){
-

Examples!

+

First example is...

+
+
+

Code

+
+println("I start program by assigning 0 to x");
+x = 0;
+println("Then I declare a table, which is not obligatory");
+array t[100];
+println("After that I fill the table like that:");
+
+while (x < 10)
+{
+	print("Index: ", x);
+	t[x] = 3*x;
+	println(", value: ", t[x]);
+	x = x + 1;
+}
+
+println("Pretty simple isn't it?");
+
+    		 
+
+
+

Comments

+ Comments to code. +
+ +
+

Output

+
+I start program by assigning 0 to x
+Then I declare a table, which is not obligatory
+After that I fill the table like that:
+Index: 0, value: 0
+Index: 1, value: 3
+Index: 2, value: 6
+Index: 3, value: 9
+Index: 4, value: 12
+Index: 5, value: 15
+Index: 6, value: 18
+Index: 7, value: 21
+Index: 8, value: 24
+Index: 9, value: 27
+Pretty simple isn't it?
+    	
+ +
{% endblock %} \ No newline at end of file diff --git a/templates/layout.html b/templates/layout.html index 61e8929..9c425d1 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -20,14 +20,12 @@
- SenchaLogo - some photo + some photo
-

Sencha

+

Why Sencha?

What can I say about sencha? It's a lot of fun writing it. Lots of pain and satisfaction. Work is still in progress. I don't even know, how it would finally be like. But I am very open for suggestions, however I want to keep it as simple as possible as comfy to dive into as possible. It is interpreted, can be interactive. Written in C++.

-
diff --git a/templates/sencha.html b/templates/sencha.html index f05811e..68f0729 100644 --- a/templates/sencha.html +++ b/templates/sencha.html @@ -13,7 +13,8 @@ $("document").ready( function(){
-

Sencha!

+

About Sencha

+

Lots can be said.

{% endblock %} diff --git a/templates/source.html b/templates/source.html index 193dd4d..9be719b 100644 --- a/templates/source.html +++ b/templates/source.html @@ -11,7 +11,12 @@ $("document").ready( function(){
-

Source!

+

Source code

+

You can view source code here + It's a git repository and code there is always up to date. You can also search branches and older revision. + Downloads is free. +

Forking

+

It's a great idea. If you want to add something, you should :)

{% endblock %} \ No newline at end of file