List of commits:
Subject Hash Author Date (UTC)
feat(cke): Pages structure. a814459f44e53490c54c8bb2249c6c965197179e Gabi 2020-03-23 22:32:47
feat(home): Add blog section to homepage. 46d13829e9d3313ad675355fc775121ab95900d5 Gabi 2020-03-23 22:06:10
fix(cke): 404 11c47ce6547528e3b3e0231080b7d2d3cd827db8 Gabi 2020-03-23 17:50:51
fix(cke): Header logo link. 6563dff6a9afe0e9b3cef390848e8abd108d0174 Gabi 2020-03-23 17:42:11
fix(cke): 404 d1cedf7bbe80220c188703b02714c0b089748d1e Gabi 2020-03-23 17:40:55
feat(cke): 404 abd55294660ed8d683595cdf9353cde3fbfeb019 Gabi 2020-03-23 17:37:52
feat(cke): Footer fa7461f76e89dbd398117d828baf3ae1683f3242 Gabi 2020-03-22 19:50:22
feat(cke): Home Slider bfd8ec479aa9d8fe8bdf22f5a05ec4eedd6ce64d Gabi 2020-03-22 19:45:03
feat(cke): Basic layout. 351e7d2a3566e13a624a30496ce96efb6aab7304 Gabi 2020-03-22 18:54:31
build(cke): Deploy htaccess. 11945821044e4eb09db031fdddedea75587d8dbd Gabi 2020-03-22 17:09:31
build(cke): Update deploy 3d8d3a7623f6d036eb0ab0daf4977247e1409891 Gabi 2020-03-22 17:07:07
build(cke): Fix deploy 727b51304ff26321f728d4aefe84bccee8045f6e Gabi 2020-03-22 17:00:25
build(cke): Changed project structure. 3b6747207f946e7b72d1cfe3f7e601c377c4b04a Gabi 2020-03-22 16:53:28
build(cke): Deploy changes 118ec60c2c2d027100d528e84fcc8c35a3739080 Gabi 2020-03-22 16:42:57
fix(cke): Change include syntax. b7f33d2889810311688e4f39fbf20e46ecb837ad Gabi 2020-03-22 16:29:56
feat(cke): Check query params. b3a97739e100e8a5f612bdf2b04df02c5bb9ccda Gabi 2020-03-22 16:12:31
feat(cke): Htaccess 0516fa010d248f3b3064ad2efa83b62ef512b3a7 Gabi 2020-03-22 16:10:50
feat(cke): Initial PHP structure. 236cf15b8bb7f067063729f607a846ffd25c2fc6 Gabi 2020-03-21 16:59:32
test(cke): Test deploy 1bbd41c287f88269ff8362773212e2509b0741b5 Gabi 2020-03-21 16:19:50
build(cke): CPanel repo 941c0b1d9fe0a66d1bb78bf3dcdd72d64145ae13 Gabi 2020-03-21 16:04:36
Commit a814459f44e53490c54c8bb2249c6c965197179e - feat(cke): Pages structure.
Author: Gabi
Author date (UTC): 2020-03-23 22:32
Committer name: Gabi
Committer date (UTC): 2020-03-23 22:32
Parent(s): 46d13829e9d3313ad675355fc775121ab95900d5
Signing key:
Tree: f2e67d09142d4d5c1c3de002ad3e4f7cfbecddcc
File Lines added Lines deleted
src/php/common/navigation.php 52 48
src/php/pages/blog.php 2 0
src/php/pages/portfolio.php 2 0
src/php/pages/products.php 2 0
src/php/pages/services.php 2 0
src/php/sections/blog/first.section.php 2 3
src/php/sections/contact/first.section.php 2 3
src/php/sections/portfolio/first.section.php 2 3
src/php/sections/products/first.section.php 2 3
src/php/sections/services/first.section.php 2 3
File src/php/common/navigation.php changed (mode: 100644) (index 6d25523..1c4c81d)
1 <?php
2
3 $pages = [
4 [
5 'label' => 'Home',
6 'url' => '/',
7 'image' => 'assets/images/projects/draft/lift.jpg'
8 ],
9 [
10 'label' => 'Products',
11 'url' => '/products',
12 'image' => 'assets/images/projects/draft/lift.jpg'
13 ],
14 [
15 'label' => 'Services',
16 'url' => '/services',
17 'image' => 'assets/images/projects/draft/lift.jpg'
18 ],
19 [
20 'label' => 'Portfolio',
21 'url' => '/portfolio',
22 'image' => 'assets/images/projects/draft/lift.jpg'
23 ],
24 [
25 'label' => 'Blog',
26 'url' => '/blog',
27 'image' => 'assets/images/projects/draft/lift.jpg'
28 ],
29 [
30 'label' => 'Contact',
31 'url' => '/contact',
32 'image' => 'assets/images/projects/draft/lift.jpg'
33 ]
34 ];
35
1 36 <!-- nav-container start --> <!-- nav-container start -->
2 37 <nav class="nav-container dark-bg-1"> <nav class="nav-container dark-bg-1">
3 38 <!-- nav-logo start --> <!-- nav-logo start -->
 
16 51 </div><!-- dropdown-close-box end --> </div><!-- dropdown-close-box end -->
17 52
18 53 <!-- nav-menu start --> <!-- nav-menu start -->
19 <ul class="nav-menu dark-bg-1">
20 <!-- nav-box start -->
21 <li class="nav-box nav-bg-change active dropdown-open">
22 <a href="index.html" class="animsition-link pointer-large">
23 <span class="nav-btn active" data-text="Home">Home</span>
24 </a>
25
26 <div class="nav-bg" style="background-image: url(assets/images/projects/draft/lift.jpg);"></div>
27 </li><!-- nav-box end -->
28 <!-- nav-box start -->
29 <li class="nav-box nav-bg-change">
30 <a href="elevators.html" class="animsition-link pointer-large nav-link">
31 <span class="nav-btn" data-text="Products">Products</span>
32 </a>
33 <div class="nav-bg" style="background-image: url(assets/images/projects/draft/lift.jpg);"></div>
34 </li><!-- nav-box end -->
35 <!-- nav-box start -->
36 <li class="nav-box nav-bg-change">
37 <a href="services.html" class="animsition-link pointer-large nav-link">
38 <span class="nav-btn" data-text="Services">Services</span>
39 </a>
40 <div class="nav-bg" style="background-image: url(assets/images/projects/draft/lift.jpg);"></div>
41 </li><!-- nav-box end -->
42 <!-- nav-box start -->
43 <li class="nav-box nav-bg-change dropdown-open">
44 <a href="portfolio.html" class="animsition-link pointer-large">
45 <span class="nav-btn" data-text="Portfolio">Portfolio</span>
46 </a>
47
48 <div class="nav-bg" style="background-image: url(assets/images/projects/draft/lift.jpg);"></div>
49 </li><!-- nav-box end -->
50 <!-- nav-box start -->
51 <li class="nav-box nav-bg-change dropdown-open">
52 <a href="blog.html" class="animsition-link pointer-large">
53 <span class="nav-btn" data-text="Blog">Blog</span>
54 </a>
55
56 <div class="nav-bg" style="background-image: url(assets/images/projects/draft/lift.jpg);"></div>
57 </li><!-- nav-box end -->
58 <!-- nav-box start -->
59 <li class="nav-box nav-bg-change">
60 <a href="contact.html" class="animsition-link pointer-large nav-link">
61 <span class="nav-btn" data-text="Contact">Contact</span>
62 </a>
63 <div class="nav-bg" style="background-image: url(assets/images/projects/draft/lift.jpg);"></div>
64 </li><!-- nav-box end -->
65 </ul><!-- nav-menu end -->
66 </nav><!-- nav-container end -->
54 <ul class="nav-menu dark-bg-1"><?php
55 foreach ($pages as $page) {?>
56 <!-- nav-box start -->
57 <li class="nav-box nav-bg-change active dropdown-open">
58 <a href="<?=$page['url']?>" class="animsition-link pointer-large">
59 <span class="nav-btn active" data-text="<?=$page['label']?>"><?=$page['label']?></span>
60 </a>
61 <div class="nav-bg" style="background-image: url('<?=$page['image']?>');"></div>
62 </li>
63 <!-- nav-box end -->
64 <?php
65 }
66 ?>
67 </ul>
68 <!-- nav-menu end -->
69 </nav>
70 <!-- nav-container end -->
File src/php/pages/blog.php added (mode: 100644) (index 0000000..84a7977)
1 <?php
2 include APPDIR . "/sliders/home.slider.php";
File src/php/pages/portfolio.php added (mode: 100644) (index 0000000..84a7977)
1 <?php
2 include APPDIR . "/sliders/home.slider.php";
File src/php/pages/products.php added (mode: 100644) (index 0000000..84a7977)
1 <?php
2 include APPDIR . "/sliders/home.slider.php";
File src/php/pages/services.php added (mode: 100644) (index 0000000..84a7977)
1 <?php
2 include APPDIR . "/sliders/home.slider.php";
File src/php/sections/blog/first.section.php copied from file src/php/sections/404/not-found.section.php (similarity 73%) (mode: 100644) (index 53aeea0..a88f4ed)
9 9 <!-- column start --> <!-- column start -->
10 10 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
11 11 <h2 class="large-title text-height-12"> <h2 class="large-title text-height-12">
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Page">Page</span><br>
13 <span data-animation-child class="title-fill tr-delay01" data-animation="title-fill-anim" data-text="not found">not found</span>
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Blog">Blog</span><br>
14 13 </h2> </h2>
15 14 </div><!-- column end --> </div><!-- column end -->
16 15 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
17 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">The page that you requested is not present on this server.</p>
16 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">Content comming soon.</p>
18 17 </div> </div>
19 18 </div><!-- flex-container end --> </div><!-- flex-container end -->
20 19 </div><!-- container end --> </div><!-- container end -->
File src/php/sections/contact/first.section.php copied from file src/php/sections/404/not-found.section.php (similarity 73%) (mode: 100644) (index 53aeea0..dc89d35)
9 9 <!-- column start --> <!-- column start -->
10 10 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
11 11 <h2 class="large-title text-height-12"> <h2 class="large-title text-height-12">
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Page">Page</span><br>
13 <span data-animation-child class="title-fill tr-delay01" data-animation="title-fill-anim" data-text="not found">not found</span>
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Contact">Contact</span><br>
14 13 </h2> </h2>
15 14 </div><!-- column end --> </div><!-- column end -->
16 15 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
17 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">The page that you requested is not present on this server.</p>
16 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">Content comming soon.</p>
18 17 </div> </div>
19 18 </div><!-- flex-container end --> </div><!-- flex-container end -->
20 19 </div><!-- container end --> </div><!-- container end -->
File src/php/sections/portfolio/first.section.php copied from file src/php/sections/404/not-found.section.php (similarity 73%) (mode: 100644) (index 53aeea0..f9f1b44)
9 9 <!-- column start --> <!-- column start -->
10 10 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
11 11 <h2 class="large-title text-height-12"> <h2 class="large-title text-height-12">
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Page">Page</span><br>
13 <span data-animation-child class="title-fill tr-delay01" data-animation="title-fill-anim" data-text="not found">not found</span>
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Portfolio">Portfolio</span><br>
14 13 </h2> </h2>
15 14 </div><!-- column end --> </div><!-- column end -->
16 15 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
17 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">The page that you requested is not present on this server.</p>
16 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">Content comming soon.</p>
18 17 </div> </div>
19 18 </div><!-- flex-container end --> </div><!-- flex-container end -->
20 19 </div><!-- container end --> </div><!-- container end -->
File src/php/sections/products/first.section.php copied from file src/php/sections/404/not-found.section.php (similarity 73%) (mode: 100644) (index 53aeea0..8281cb1)
9 9 <!-- column start --> <!-- column start -->
10 10 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
11 11 <h2 class="large-title text-height-12"> <h2 class="large-title text-height-12">
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Page">Page</span><br>
13 <span data-animation-child class="title-fill tr-delay01" data-animation="title-fill-anim" data-text="not found">not found</span>
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Products">Products</span><br>
14 13 </h2> </h2>
15 14 </div><!-- column end --> </div><!-- column end -->
16 15 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
17 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">The page that you requested is not present on this server.</p>
16 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">Content comming soon.</p>
18 17 </div> </div>
19 18 </div><!-- flex-container end --> </div><!-- flex-container end -->
20 19 </div><!-- container end --> </div><!-- container end -->
File src/php/sections/services/first.section.php copied from file src/php/sections/404/not-found.section.php (similarity 73%) (mode: 100644) (index 53aeea0..1976c85)
9 9 <!-- column start --> <!-- column start -->
10 10 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
11 11 <h2 class="large-title text-height-12"> <h2 class="large-title text-height-12">
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Page">Page</span><br>
13 <span data-animation-child class="title-fill tr-delay01" data-animation="title-fill-anim" data-text="not found">not found</span>
12 <span data-animation-child class="title-fill" data-animation="title-fill-anim" data-text="Services">Services</span><br>
14 13 </h2> </h2>
15 14 </div><!-- column end --> </div><!-- column end -->
16 15 <div class="twelve-columns text-center"> <div class="twelve-columns text-center">
17 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">The page that you requested is not present on this server.</p>
16 <p data-animation-child class="p-style-medium text-color-5 fade-anim-box tr-delay02" data-animation="fade-anim">Content comming soon.</p>
18 17 </div> </div>
19 18 </div><!-- flex-container end --> </div><!-- flex-container end -->
20 19 </div><!-- container end --> </div><!-- container end -->
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/bitvice/cke

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/bitvice/cke

Clone this repository using git:
git clone git://git.rocketgit.com/user/bitvice/cke

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main