New slogans in front page

This commit is contained in:
Manuel Cillero 2017-10-03 18:33:38 +02:00
parent d29570095d
commit a27a2de226
4 changed files with 31 additions and 19 deletions

View file

@ -225,7 +225,7 @@
-ms-transition: all 0.3s ease-out; -ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out; transition: all 0.3s ease-out;
} }
.thumbnail h3, .thumbnail h3,
.thumbnail p { .thumbnail p {
margin: 0; margin: 0;
padding: 0; padding: 0;
@ -454,7 +454,7 @@
height: 40px; height: 40px;
text-align: center; text-align: center;
} }
#portfolio-grid .mix { #features-grid .mix {
opacity: 0; opacity: 0;
display: none; display: none;
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 316 KiB

Before After
Before After

View file

@ -45,7 +45,7 @@ $jq(document).ready(function ($) {
$('#da-slider').cslider(); $('#da-slider').cslider();
//Initial mixitup, used for animated filtering portfolio. //Initial mixitup, used for animated filtering portfolio.
$('#portfolio-grid').mixitup({ $('#features-grid').mixitup({
'onMixStart': function (config) { 'onMixStart': function (config) {
$('div.toggleDiv').hide(); $('div.toggleDiv').hide();
} }
@ -302,8 +302,8 @@ Sand mail
/************************ /************************
Animate elements Animate elements
*************************/ *************************/
//Animate thumbnails //Animate thumbnails
$jq('.thumbnail').one('inview', function (event, visible) { $jq('.thumbnail').one('inview', function (event, visible) {
if (visible == true) { if (visible == true) {
$jq(this).addClass("animated fadeInDown"); $jq(this).addClass("animated fadeInDown");
@ -320,7 +320,7 @@ Sand mail
$jq(this).removeClass("animated fadeInDown"); $jq(this).removeClass("animated fadeInDown");
} }
}); });
//animate first team member //animate first team member
$jq('#first-person').bind('inview', function (event, visible) { $jq('#first-person').bind('inview', function (event, visible) {
if (visible == true) { if (visible == true) {
@ -329,7 +329,7 @@ Sand mail
$jq('#first-person').removeClass("animated pulse"); $jq('#first-person').removeClass("animated pulse");
} }
}); });
//animate sectond team member //animate sectond team member
$jq('#second-person').bind('inview', function (event, visible) { $jq('#second-person').bind('inview', function (event, visible) {
if (visible == true) { if (visible == true) {
@ -347,7 +347,7 @@ Sand mail
$jq('#third-person').removeClass("animated pulse"); $jq('#third-person').removeClass("animated pulse");
} }
}); });
//Animate price columns //Animate price columns
$jq('.price-column, .testimonial').bind('inview', function (event, visible) { $jq('.price-column, .testimonial').bind('inview', function (event, visible) {
if (visible == true) { if (visible == true) {
@ -356,7 +356,7 @@ Sand mail
$jq(this).removeClass("animated fadeInDown"); $jq(this).removeClass("animated fadeInDown");
} }
}); });
//Animate contact form //Animate contact form
$jq('#block-cillero_manuel-block-availability').bind('inview', function (event, visible) { $jq('#block-cillero_manuel-block-availability').bind('inview', function (event, visible) {
if (visible == true) { if (visible == true) {
@ -417,4 +417,4 @@ function initializeMap() {
}); });
infowindow.open(map, marker); infowindow.open(map, marker);
} }

View file

@ -106,23 +106,35 @@ if ($site_name) print '<meta property="og:site_name" content="'. $site_name ."\"
<!-- End slide --> <!-- End slide -->
<!-- Start slide 2 --> <!-- Start slide 2 -->
<div class="da-slide"> <div class="da-slide">
<h2><?php print t('From Ideas To Code'); ?></h2> <h2><?php print t('From Ideas To Software'); ?></h2>
<h4><?php print t('Solving Real-World Problems'); ?></h4> <h4><?php print t('Solving Real-World Problems'); ?></h4>
<p><?php print t('I like to indulge in my own projects like !suitedesk and create something fun that adds to my daily life. I have a special appreciation for creative concepts and new technologies.', array('!suitedesk' => '<strong>SuiteDesk</strong>')); ?></p> <p><?php print t('!suitedesk is Open Source Software. It means you are not locked into using a particular vendors system, and its continually evolving in real time as developers add to it and modify it.', array('!suitedesk' => '<strong>SuiteDesk</strong>')); ?></p>
<a href="http://manuel.cillero.es/about" class="da-link button"><?php print t('More about me'); ?></a> <a href="#suitedesk" class="da-link button"><?php print t('More'); ?></a>
<div class="da-img"> <div class="da-img">
<img src="<?php print $base_path . $directory; ?>/images/frontpage/Slider02.png" alt="<?php print t('Professional Programmer'); ?>" width="320" /> <img src="<?php print $base_path . $directory; ?>/images/frontpage/Slider02.png" alt="<?php print t('From Ideas To Software'); ?>" width="320" />
</div> </div>
</div> </div>
<!-- End slide --> <!-- End slide -->
<!-- Start slide 3 --> <!-- Start slide 3 -->
<div class="da-slide"> <div class="da-slide">
<h2><?php print t('Sharing Expertise'); ?></h2> <h2><?php print t('Sharing Expertise'); ?></h2>
<h4><?php print t('Get in touch'); ?></h4> <h4><?php print t('Beyond Project Management'); ?></h4>
<p><?php print t('Whether you\'re an individual, a corporation, a non-profit or an online retailer, I\'m all over the web. It\'s my job.'); ?></p> <p><?php print t('!suitedesk is simple but powerful tool for those who are looking new and easy solutions. What is your experience with free project management tools?', array('!suitedesk' => '<strong>SuiteDesk</strong>')); ?></p>
<a href="http://manuel.cillero.es/contact" class="da-link button"><?php print t('Contact me'); ?></a> <?php
global $conf;
$button = t('Log in');
$href = ($language->language != 'es' ? "$base_url/$language->language" : $base_url) . '/user/login';
foreach (array('contact', 'linkedin', 'facebook', 'twitter', 'website') as $social) {
if (!empty($conf["social_$social"])) {
$button = t('Contact');
$href = $conf["social_$social"];
break;
}
}
print '<a href="' . $href . '" class="da-link button">' . $button . '</a>';
?>
<div class="da-img"> <div class="da-img">
<img src="<?php print $base_path . $directory; ?>/images/frontpage/Slider03.png" width="320" alt="<?php print t('Want to Start a Project'); ?>" /> <img src="<?php print $base_path . $directory; ?>/images/frontpage/Slider03.png" width="320" alt="<?php print t('Sharing Expertise'); ?>" />
</div> </div>
</div> </div>
<!-- End slide --> <!-- End slide -->
@ -283,7 +295,7 @@ if ($site_name) print '<meta property="og:site_name" content="'. $site_name ."\"
</div> </div>
</div> </div>
<!-- End details --> <!-- End details -->
<ul id="portfolio-grid" class="thumbnails row"> <ul id="features-grid" class="thumbnails row">
<li class="span4 mix web"> <li class="span4 mix web">
<div class="thumbnail"> <div class="thumbnail">
<img src="<?php print $base_path . $directory; ?>/images/frontpage/ProjectsAndTasks.jpg" alt="<?php print t('Projects & Tasks'); ?>" /> <img src="<?php print $base_path . $directory; ?>/images/frontpage/ProjectsAndTasks.jpg" alt="<?php print t('Projects & Tasks'); ?>" />