Skip to content

Instantly share code, notes, and snippets.

@anghelalexandra
Last active June 11, 2017 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anghelalexandra/b8847e32f8adb2a3391b35c6be0d920c to your computer and use it in GitHub Desktop.
Save anghelalexandra/b8847e32f8adb2a3391b35c6be0d920c to your computer and use it in GitHub Desktop.
wp-pwa-sample-index-file
<!DOCTYPE HTML>
<html manifest="" <?php language_attributes(); ?>>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#ffffff">
<title><?php echo get_bloginfo("name");?></title>
<!-- load css -->
<link rel="stylesheet" href="<?php echo get_template_directory_uri();?>/style.css">
<!-- load js -->
<script type="text/javascript" pagespeed_no_defer="">
window.__APPTICLES_BOOTSTRAP_DATA__ = {
CONFIG_PATH: '<?php echo get_template_directory_uri();?>/config.json'
};
</script>
<script src="<?php echo get_template_directory_uri();?>/js/bundle.js" type="text/javascript"></script>
</head>
<body>
<ion-nav-view></ion-nav-view>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment