layout.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {{ define "layout" }}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <link rel="canonical" href="{{ .CanonicalURL }}" />
  6. <meta name="description" content="{{.Content}}" />
  7. <meta name="author" content="videochat" />
  8. <meta name="apple-mobile-web-app-capable" content="yes" />
  9. <meta name="mobile-web-app-capable" content="yes" />
  10. <meta name="HandheldFriendly" content="True" />
  11. <meta name="MobileOptimized" content="320" />
  12. <title>{{.Title}}</title>
  13. <link
  14. rel="preload"
  15. href="/static/css/custom.css"
  16. as="style"
  17. onload="this.onload=null;this.rel='stylesheet'"
  18. />
  19. <script type="application/ld+json">
  20. {
  21. "@context": "http://schema.org",
  22. "@type": "SoftwareApplication",
  23. "applicationCategory": "EntertainmentApplicatione",
  24. "name": "videochat",
  25. "url": "https://DUMMY.com",
  26. "sameAs": [
  27. "https://twitter.com/DUMMY",
  28. "https://www.instagram.com/DUMMY/"
  29. ],
  30. "operatingSystem": "web",
  31. "image": "https://DUMMY.com/static/img/logo.png",
  32. "datePublished": "2020-08-27",
  33. "publisher": {
  34. "@type": "Organization",
  35. "name": "DUMMY"
  36. }
  37. }
  38. </script>
  39. </head>
  40. <body>
  41. <div id="page-content-wrapper" style="width: 100%">
  42. <div class="container-fluid" style="padding:0px;">
  43. <div style="width: 100%">{{ template "content" . }}</div>
  44. </div>
  45. </div>
  46. </div>
  47. <script
  48. defer
  49. type="application/javascript"
  50. src="/static/js/custom.js"
  51. ></script>
  52. </body>
  53. </html>
  54. {{ end }}