New slogans in front page
This commit is contained in:
parent
d29570095d
commit
a27a2de226
4 changed files with 31 additions and 19 deletions
|
@ -454,7 +454,7 @@
|
|||
height: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
#portfolio-grid .mix {
|
||||
#features-grid .mix {
|
||||
opacity: 0;
|
||||
display: none;
|
||||
}
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 316 KiB |
|
@ -45,7 +45,7 @@ $jq(document).ready(function ($) {
|
|||
$('#da-slider').cslider();
|
||||
|
||||
//Initial mixitup, used for animated filtering portfolio.
|
||||
$('#portfolio-grid').mixitup({
|
||||
$('#features-grid').mixitup({
|
||||
'onMixStart': function (config) {
|
||||
$('div.toggleDiv').hide();
|
||||
}
|
||||
|
|
|
@ -106,23 +106,35 @@ if ($site_name) print '<meta property="og:site_name" content="'. $site_name ."\"
|
|||
<!-- End slide -->
|
||||
<!-- Start slide 2 -->
|
||||
<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>
|
||||
<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>
|
||||
<a href="http://manuel.cillero.es/about" class="da-link button"><?php print t('More about me'); ?></a>
|
||||
<p><?php print t('!suitedesk is Open Source Software. It means you are not locked into using a particular vendor’s system, and it’s continually evolving in real time as developers add to it and modify it.', array('!suitedesk' => '<strong>SuiteDesk</strong>')); ?></p>
|
||||
<a href="#suitedesk" class="da-link button"><?php print t('More'); ?></a>
|
||||
<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>
|
||||
<!-- End slide -->
|
||||
<!-- Start slide 3 -->
|
||||
<div class="da-slide">
|
||||
<h2><?php print t('Sharing Expertise'); ?></h2>
|
||||
<h4><?php print t('Get in touch'); ?></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>
|
||||
<a href="http://manuel.cillero.es/contact" class="da-link button"><?php print t('Contact me'); ?></a>
|
||||
<h4><?php print t('Beyond Project Management'); ?></h4>
|
||||
<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>
|
||||
<?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">
|
||||
<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>
|
||||
<!-- End slide -->
|
||||
|
@ -283,7 +295,7 @@ if ($site_name) print '<meta property="og:site_name" content="'. $site_name ."\"
|
|||
</div>
|
||||
</div>
|
||||
<!-- End details -->
|
||||
<ul id="portfolio-grid" class="thumbnails row">
|
||||
<ul id="features-grid" class="thumbnails row">
|
||||
<li class="span4 mix web">
|
||||
<div class="thumbnail">
|
||||
<img src="<?php print $base_path . $directory; ?>/images/frontpage/ProjectsAndTasks.jpg" alt="<?php print t('Projects & Tasks'); ?>" />
|
||||
|
|
Reference in a new issue