22 lines
784 B
HTML
22 lines
784 B
HTML
|
|
title = "mobile app"
|
||
|
|
url = "/mobile"
|
||
|
|
|
||
|
|
==
|
||
|
|
<p>redirect to app download page</p>
|
||
|
|
|
||
|
|
<p>google <a href="https://play.google.com/store/apps/details?id=com.tpsadvertising.orientnews&hl=ru&gl=US">play market</a></p>
|
||
|
|
<p>apple <a href="https://apps.apple.com/tm/app/orient-news/id1464890462">app store</a></p>
|
||
|
|
<script>
|
||
|
|
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
|
||
|
|
|
||
|
|
if (/android/i.test(userAgent)) {
|
||
|
|
location.replace('https://play.google.com/store/apps/details?id=com.tpsadvertising.orientnews&hl=ru&gl=US');
|
||
|
|
}
|
||
|
|
|
||
|
|
// iOS detection from: http://stackoverflow.com/a/9039885/177710
|
||
|
|
if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {
|
||
|
|
location.replace('https://apps.apple.com/tm/app/orient-news/id1464890462');
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|