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
$lightblue: #75A8C1; | |
$darkgrey: #4B5255; | |
$middlegrey: #91A5AE; | |
$mediumblue: #32768E; | |
.test { | |
// Light blue 50 % | |
color: lightblue50; | |
color: mix(white, $lightblue, 50%); | |
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/bash | |
# Clean the npm cache | |
sudo npm cache clean -f | |
# Install node globally | |
sudo npm install -g n | |
# Install the desired version of node (here stable, could also be a version like 4.4.2 etc) | |
sudo n stable |
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
{namespace wm=WM\StarterKit\ViewHelpers} | |
<f:format.raw><wm:notFound path="{f:if(condition: path, then: path, else: '404')}" /></f:format.raw> | |
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
<?php | |
namespace WM\StarterKit\Finishers; | |
/** | |
* @author Benjamin Klix | die wegmeister gmbh | |
*/ | |
class EmailFinisher extends \TYPO3\Form\Finishers\EmailFinisher { | |
/** | |
* Extends the functionality of the default parseOption() method |