Browse code

add account link in posts page

Dario Rodriguez authored on 23/07/2014 09:47:46
Showing 1 changed files
... ...
@@ -7,9 +7,10 @@
7 7
  <link rel="stylesheet" type="text/css" href="posts.css">
8 8
 </head>
9 9
 <body>
10
-   <div class='banner'><img src="banner.png" /></div>
11 10
 <!-- HEADER_START -->
11
+   <div class='header'><a id='account' href='account.html'>Mi cuenta</a></div>
12 12
 <!-- HEADER_END -->
13
+   <div class='banner'><img src="banner.png" /></div>
13 14
    <div class='centeredbutton'><input class='rounded' id='gotonewpost' type ='button' value='Nuevo post'/></div>
14 15
    <div id='posts'><p>No posts for now</p></div>
15 16
    <div id='prevnext'></div>
Browse code

add banner image

Dario Rodriguez authored on 10/07/2014 17:17:13
Showing 1 changed files
... ...
@@ -7,6 +7,7 @@
7 7
  <link rel="stylesheet" type="text/css" href="posts.css">
8 8
 </head>
9 9
 <body>
10
+   <div class='banner'><img src="banner.png" /></div>
10 11
 <!-- HEADER_START -->
11 12
 <!-- HEADER_END -->
12 13
    <div class='centeredbutton'><input class='rounded' id='gotonewpost' type ='button' value='Nuevo post'/></div>
Browse code

Add reset.css to the html files

Dario Rodriguez authored on 09/07/2014 11:59:16
Showing 1 changed files
... ...
@@ -3,6 +3,7 @@
3 3
 <head>
4 4
  <meta charset="utf-8"/>
5 5
  <title>kakumei posts</title>
6
+ <link rel="stylesheet" type="text/css" href="reset.css">
6 7
  <link rel="stylesheet" type="text/css" href="posts.css">
7 8
 </head>
8 9
 <body>
Browse code

Add charset to the html files

Dario Rodriguez authored on 09/07/2014 11:53:35
Showing 1 changed files
... ...
@@ -1,6 +1,8 @@
1 1
 <!DOCTYPE html>
2 2
 <html>
3
-<head><title>kakumei posts</title>
3
+<head>
4
+ <meta charset="utf-8"/>
5
+ <title>kakumei posts</title>
4 6
  <link rel="stylesheet" type="text/css" href="posts.css">
5 7
 </head>
6 8
 <body>
... ...
@@ -8,6 +10,7 @@
8 10
 <!-- HEADER_END -->
9 11
    <div class='centeredbutton'><input class='rounded' id='gotonewpost' type ='button' value='Nuevo post'/></div>
10 12
    <div id='posts'><p>No posts for now</p></div>
13
+   <div id='prevnext'></div>
11 14
  <script src='posts.js'></script>
12 15
 </body>
13 16
 </html>
Browse code

View several posts in the posts page

Dario Rodriguez authored on 07/07/2014 12:08:14
Showing 1 changed files
... ...
@@ -4,8 +4,10 @@
4 4
  <link rel="stylesheet" type="text/css" href="posts.css">
5 5
 </head>
6 6
 <body>
7
-   <p id='posts'> No posts for now</p>
8
-   <span class='centeredbutton'><input class='rounded' id='gotonewpost' type ='button' value='Nuevo post'/></span>
7
+<!-- HEADER_START -->
8
+<!-- HEADER_END -->
9
+   <div class='centeredbutton'><input class='rounded' id='gotonewpost' type ='button' value='Nuevo post'/></div>
10
+   <div id='posts'><p>No posts for now</p></div>
9 11
  <script src='posts.js'></script>
10 12
 </body>
11 13
 </html>
Browse code

add the editor and the posts part

Dario Rodriguez authored on 26/06/2014 22:41:33
Showing 1 changed files
... ...
@@ -4,7 +4,7 @@
4 4
  <link rel="stylesheet" type="text/css" href="posts.css">
5 5
 </head>
6 6
 <body>
7
-   <p> No posts for now</p>
7
+   <p id='posts'> No posts for now</p>
8 8
    <span class='centeredbutton'><input class='rounded' id='gotonewpost' type ='button' value='Nuevo post'/></span>
9 9
  <script src='posts.js'></script>
10 10
 </body>
Browse code

finish new user creation

Dario Rodriguez authored on 25/06/2014 20:52:20
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,11 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head><title>kakumei posts</title>
4
+ <link rel="stylesheet" type="text/css" href="posts.css">
5
+</head>
6
+<body>
7
+   <p> No posts for now</p>
8
+   <span class='centeredbutton'><input class='rounded' id='gotonewpost' type ='button' value='Nuevo post'/></span>
9
+ <script src='posts.js'></script>
10
+</body>
11
+</html>