From b3b1244641d0921f502458bc7ddaf5b8076a2334 Mon Sep 17 00:00:00 2001 From: Jayesh Tembhekar Date: Fri, 2 Oct 2020 15:25:11 +0530 Subject: [PATCH 1/3] added: new posts --- data.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data.php b/data.php index cf332e8..a1afc6b 100644 --- a/data.php +++ b/data.php @@ -1,7 +1,7 @@ "Home", "url" => "/"], + ["title" => "Home", "url" => "#home"], ["title" => "About", "url" => "#about"], ["title" => "Gallery", "url" => "#gallery"], ["title" => "Contact", "url" => "#contact"] @@ -10,20 +10,20 @@ $posts = [ [ - "title" => "Demo title 1", - "intro" => "This is simple content and its cool" + "title" => "What are your goals for Hacktoberfest?", + "intro" => "Hacktoberfest is open starting today. What goal do you aim to achieve before October 31st? Mine is to contribute and finally give back to at least 2 of the vim plugins I use every day. What about you? Share below." ], [ - "title" => "Demo title 2", - "intro" => "This is simple content as second article and its cool" + "title" => "8 important things I learned as a software developer over a decade.", + "intro" => "Originally published at deepu.tech. Please follow me on Twitter for updates and let me know what can be improved in the post." ], [ - "title" => "Demo title 2", - "intro" => "This is simple content as second article and its cool" + "title" => "28 Creative 404 pages for your Inspiration 🧙‍♂️✨", + "intro" => "Landing on a default, un-styled ‘page not found’ with no further info and links can be really annoying. A creative and clever error page goes a long way in turning your visitor’s frown into a smile. 😉" ], [ - "title" => "Demo title 2", - "intro" => "This is simple content as second article and its cool" + "title" => "Backend Developer Roadmap 2020", + "intro" => "Basic Frontend Knowledge: HTML,CSS,Javascript" ] -]; \ No newline at end of file +]; From ebd7684489e0f6640f18ebf1b366f9999dd08981 Mon Sep 17 00:00:00 2001 From: Jayesh Tembhekar Date: Fri, 2 Oct 2020 15:26:14 +0530 Subject: [PATCH 2/3] improved: UI --- index.php | 260 +++++++++++++++++++++++++++++------------------------- 1 file changed, 139 insertions(+), 121 deletions(-) diff --git a/index.php b/index.php index 5276001..7b0ff42 100644 --- a/index.php +++ b/index.php @@ -3,53 +3,67 @@ ?> - + - - - - - Dynamo blog page - - - - - - - - - + + + + + Dynamo blog page + + + + + + + + + + + + + + + + + + - + - -
-
-
-
-
-
-

Lazy blogger

- Its all about laziness and blogging... -
+ +
+
+
+
+
+
+

Lazy blogger

+ Its all about laziness and blogging... +
+
+
-
-
-
- - + +
+ +
+
+
+ -
- -

- + +

+ -

-
-
-
-

- + +

+
+

+ -

-
-
-
- +
+

+
+ -
- -
+
+ +
+
+
- +
-
- - - - - - - - - + + + + + + - - \ No newline at end of file + + From 6268838838231318feeef793ba6f813af771e9a3 Mon Sep 17 00:00:00 2001 From: Jayesh Tembhekar Date: Fri, 2 Oct 2020 15:27:50 +0530 Subject: [PATCH 3/3] added: custom css --- template.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 template.css diff --git a/template.css b/template.css new file mode 100644 index 0000000..ccee614 --- /dev/null +++ b/template.css @@ -0,0 +1,13 @@ +.header { + font-size: 26px; + font-weight: 800; + text-decoration: underline; +} + +#card-main { + margin-top: 200px; +} + +.footer-text{ + text-align: center; +}