Skip to content

Instantly share code, notes, and snippets.

View davidmars's full-sized avatar
☠️
looking for the skateboard emoji.

david davidmars

☠️
looking for the skateboard emoji.
View GitHub Profile
@davidmars
davidmars / languages-menu.pov.php
Created October 29, 2014 03:52
Display a language menu in a POV FMK View
<ul>
<?foreach(theProject()->hosts() as $h):?>
<li class="one-host-item">
<a href="<?=$h->getUrl()?>" <?=$h->attributesForSEO()?> class="<?=$h->cssIsCurrent("current-language")?>">
<?=$h->language->localName?>
</a>
</li>
<?endforeach?>
</ul>
@davidmars
davidmars / .htaccess
Created October 22, 2024 11:26
Very very open minded .htaccess for vue, vue router & apache
# vue router open minded .htaccess
# abcd/assets/efgh.ext -> assets/efgh.ext
# abcd/efgh/ijk-what-else -> index.html
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)assets/(.*)$ assets/$2 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d