Follow the
IITC
page
for release announcements.
Join the
IITC
Community
- a place to ask for help and discuss with other users.
IITC has yet again been broken by changes Niantic have made. Further information/discussion on
this Google+ post.
' Home',
'news' => ' News',
'faq' => ' FAQ',
'desktop' => ' Desktop',
'mobile' => ' Mobile',
'test' => ' Test Builds',
'developer' => ' Developers',
'about' => ' About',
'donate' => ' Donate',
);
$page = 'home';
if ( array_key_exists ( 'page', $_REQUEST ) )
$page = $_REQUEST['page'];
if ( ! array_key_exists ( $page, $pages ) )
$page = "home";
foreach ( $pages as $key => $name )
{
# before 'desktop', add a nav-header
if ( $key == 'desktop' )
print "";
if ( $key == "home" )
$url = "./";
else
$url = "?page=$key";
print "- $name
\n";
# after 'mobile', add a horizontal seperator
if ( $key == 'test' )
print "";
}
?>
This site and the scripts are not officially affiliated with Ingress or Niantic Labs at Google.
Using these scripts is likely to be considered against the Ingress Terms of Service. Any use is at your own risk.