There are two types of markup in Liquid: Output and Tag.
- Output markup (which may resolve to text) is surrounded by
{{ matched pairs of curly brackets (ie, braces) }}
- Tag markup (which cannot resolve to text) is surrounded by
There are two types of markup in Liquid: Output and Tag.
{{ matched pairs of curly brackets (ie, braces) }}
LNMP
DATA="$(wget https://www.phpmyadmin.net/home_page/version.txt -q -O-)" | |
URL="$(echo $DATA | cut -d ' ' -f 3)" | |
VERSION="$(echo $DATA | cut -d ' ' -f 1)" | |
wget https://files.phpmyadmin.net/phpMyAdmin/${VERSION}/phpMyAdmin-${VERSION}-english.tar.gz | |
tar xvf phpMyAdmin-${VERSION}-english.tar.gz | |
rsync -av phpMyAdmin-${VERSION}-english/ /usr/share/phpmyadmin |
<?php | |
/** | |
* JavaScript SPA Valet Driver | |
*/ | |
class JavaScriptSPAValetDriver extends ValetDriver | |
{ | |
/** | |
* Serves | |
* |
Only swipe events available for IonItemSliding by default. So, here the idea to add click event.
window.origin = window.location.href.replace(window.location.hash,'').replace(window.location.search,'').replace('#',''); | |
var reset_app = function() | |
{ | |
window.open(window.origin,'_top'); | |
} | |
/** | |
* http://ihsanberahim.com | |
*/ |
{ | |
copy: { | |
dist: { | |
files: [{ | |
expand: true, | |
dot: true, | |
cwd: '<%= yeoman.app %>', | |
dest: '<%= yeoman.dist %>', | |
src: [ | |
'*.{ico,txt}', |