Skip to content

Instantly share code, notes, and snippets.

View mediaformat's full-sized avatar
🇺🇳
Humanitarian intervention now

Django mediaformat

🇺🇳
Humanitarian intervention now
View GitHub Profile
@mediaformat
mediaformat / gist:e13dc652a0b79226a0e1
Created August 3, 2015 17:37
Test if page is a specific view in page.tpl.php
<?php
$view = views_get_page_view();
if(isset($view) && $view->name == 'VIEWS_MACHINE_NAME') : ?><!-- Do Something -->
<?php endif; ?>