diff --git a/_includes/developper/home/head.html b/_includes/developper/home/head.html index aeb1868..fa3f6b5 100644 --- a/_includes/developper/home/head.html +++ b/_includes/developper/home/head.html @@ -1,11 +1,12 @@ -
+

Help us building Comunic or setup your own server.

- Create an account now ! + Help us + Install Comunic
diff --git a/_layouts/common/page.html b/_layouts/common/page.html new file mode 100644 index 0000000..267a646 --- /dev/null +++ b/_layouts/common/page.html @@ -0,0 +1,37 @@ +--- +layout: default +--- + + + +
+ +
+
+
+
+ + + {{ content }} + + +
+
+
+
+ +
diff --git a/_posts/2016-06-10-dinosaurs.markdown b/_posts/2016-06-10-dinosaurs.markdown deleted file mode 100644 index f92ad5c..0000000 --- a/_posts/2016-06-10-dinosaurs.markdown +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: default -title: "Dinosaurs are extinct today" -subtitle: "because they lacked opposable thumbs and the brainpower to build a space program." -date: 2016-06-10 12:00:00 -author: "Antonio Trento" -header-img: "img/post-bg-01.jpg" -categories: jekyll ---- - -

Never in all their history have men been able truly to conceive of the world as one: a single sphere, a globe, having the qualities of a globe, a round earth in which all the directions eventually meet, in which there is no center because every point, or none, is center — an equal earth which all men occupy as equals. The airman's earth, if free men make it, will be truly round: a globe in practice, not in theory.

- -

Science cuts two ways, of course; its products can be used for both good and evil. But there's no turning back from science. The early warnings about technological dangers also come from science.

- -

What was most significant about the lunar voyage was not that man set foot on the Moon but that they set eye on the earth.

- -

A Chinese tale tells of some men sent to harm a young girl who, upon seeing her beauty, become her protectors rather than her violators. That's how I felt seeing the Earth for the first time. I could not help but love and cherish her.

- -

For those who have seen the Earth from space, and for the hundreds and perhaps thousands more who will, the experience most certainly changes your perspective. The things that we share in our world are far more valuable than those which divide us.

- -

The Final Frontier

- -

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

- -

There can be no thought of finishing for ‘aiming for the stars.’ Both figuratively and literally, it is a task to occupy the generations. And no matter how much progress one makes, there is always the thrill of just beginning.

- -
The dreams of yesterday are the hopes of today and the reality of tomorrow. Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next ten.
- -

Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.

- -

Reaching for the Stars

- -

As we got further and further away, it [the Earth] diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.

diff --git a/_sass/_base.scss b/_sass/_base.scss index a284675..e7cdc0e 100755 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -569,7 +569,7 @@ body { .intro-header { background: no-repeat center center; - background-color: #808080; + background-color: #001F3F; background-attachment: scroll; -webkit-background-size: cover; -moz-background-size: cover; diff --git a/_sass/_developper.scss b/_sass/_developper.scss new file mode 100644 index 0000000..a81dbf3 --- /dev/null +++ b/_sass/_developper.scss @@ -0,0 +1,11 @@ +/** + * Developper stylesheet + * + * $author Pierre HUBERT + */ + +.developper-header { + background: $theme-secondary; /* fallback for old browsers */ + background: -webkit-linear-gradient(to left, $theme-primary , $theme-secondary); /* Chrome 10-25, Safari 5.1-6 */ + background: linear-gradient(to left, $theme-primary , $theme-secondary); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ +} \ No newline at end of file diff --git a/css/main.scss b/css/main.scss index 2d1ea90..20a5f8f 100755 --- a/css/main.scss +++ b/css/main.scss @@ -44,5 +44,6 @@ $theme-dark: #222; @import "fonts", "mixins", - "base" + "base", + "developper" ; diff --git a/developper/install.html b/developper/install.html new file mode 100644 index 0000000..502dd43 --- /dev/null +++ b/developper/install.html @@ -0,0 +1,24 @@ +--- +layout: common/page +title: Setup your Comunic Server +subtitle: Use Docker to get started quickly with your own Comunic Server +--- + +

The easiest way to setup Comunic is to install it using our Docker image.

+ + +

Requirements :

+

* Docker installed on a 64bit machine.

+

* The port 80 of the machine must be available (The software can not be accessed through another port yet but we are working on it)

+ +

 

+ +

Installation:

+

Please use the following command:

+
docker run -ti --restart=always -p 80:80 --name="Comunic" pierre42100/comunic-dockersinglecontainer
+

The --restart=always argument is optionnal but strongly recommended in ordrer to be able to restart Comunic on machine reboot.

+ +

 

+ +

Usage

+

Please navigate to http://{your_server_address}/ to use newly installed Comunic Server.

\ No newline at end of file