This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main role="main" class="row l-main"> | |
<!-- sidebar region ( PUSHED TO RIGHT ON LARGE ) --> | |
<aside role="complementary" class="sidebar-second small-12 medium-6 large-3 large-push-9 columns sidebar"> | |
<?php print render($page['sidebar_second']); ?> | |
</aside> | |
<!-- .l-main region ( PULLED TO LEFT ON LARGE ) --> | |
<div class="main small-12 medium-12 large-9 large-pull-3 columns"> | |
<?php print render($page['content']); ?> | |
</div> | |
</main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="card"> | |
<h2><?php print render($content['field_card_title']); ?></h2> | |
<?php print render($content['field_card_image']); ?> | |
<?php print render($content['field_card_link']); ?></li> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a:nth-child(3):last-child { | |
/* I'm the last of three */ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
location=$(pwd) | |
PSU=`echo $location| cut -d'.' -f 1` | |
echo $PSU | |
#PSUSTRING=`echo $PSU| cut -d'/' -f 1` | |
#PSUSTRING=`echo $PSU|tail -c 10` | |
#echo $PSUSTRING | |
# SUBSTRING=`echo $INPUT| cut -d'_' -f 2` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# UPDATE DRUPAL CORE | |
yes | drush up drupal | |
# UPDATE MODULES | |
yes | drush up --no-core | |
# CLEANOUT FILES | |
drush cu | |
# COPY PATH | |
location=$(pwd) |
NewerOlder