fbinfo.html 1.1 KB

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title><%= title %></title>
  6. <meta name="description" content="<%= description %>">
  7. <meta property="og:image" content="<%= image %>">
  8. <meta property="og:description" content="<%= description %>">
  9. <meta property="og:title" content="<%= title %>">
  10. <meta name="twitter:card" content="summary">
  11. <meta name="twitter:title" content="<%= title %>">
  12. <meta name="twitter:description" content="<%= description %>">
  13. <meta name="twitter:image" content="<%= image %>">
  14. </head>
  15. <body>
  16. <script>
  17. var ua_str=navigator.userAgent.toLowerCase();
  18. var isMobile = ua_str.match(/ipad/i) == "ipad" || ua_str.match(/iphone os/i) == "iphone os" || ua_str.match(/midp/i) == "midp" || ua_str.match(/rv:1.2.3.4/i) == "rv:1.2.3.4" || ua_str.match(/ucweb/i) == "ucweb" || ua_str.match(/android/i) == "android" || ua_str.match(/windows ce/i) == "windows ce" || ua_str.match(/windows mobile/i) == "windows mobile";
  19. var pcUrl = "<%- redirect.pcUrl %>";
  20. var msiteUrl = "<%= redirect.msiteUrl %>";
  21. location.href = isMobile ? msiteUrl : pcUrl;
  22. </script>
  23. </body>
  24. </html>