You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

footer.tmpl 3.0 kB

10 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {{/*
  2. <html>
  3. <body>
  4. <div>
  5. */}}
  6. {{template "custom/body_inner_post" .}}
  7. </div>
  8. {{template "custom/body_outer_post" .}}
  9. {{template "base/footer_content" .}}
  10. {{if .RequireSimpleMDE}}
  11. <script src="{{StaticUrlPrefix}}/vendor/plugins/simplemde/simplemde.min.js"></script>
  12. <script src="{{StaticUrlPrefix}}/vendor/plugins/codemirror/addon/mode/loadmode.js"></script>
  13. <script src="{{StaticUrlPrefix}}/vendor/plugins/codemirror/mode/meta.js"></script>
  14. <script>
  15. CodeMirror.modeURL = "{{StaticUrlPrefix}}/vendor/plugins/codemirror/mode/%N/%N.js";
  16. </script>
  17. {{end}}
  18. <!-- Third-party libraries -->
  19. {{if .RequireMinicolors}}
  20. <script src="{{StaticUrlPrefix}}/vendor/plugins/jquery.minicolors/jquery.minicolors.min.js"></script>
  21. {{end}}
  22. {{if .RequireU2F}}
  23. <script src="{{StaticUrlPrefix}}/vendor/plugins/u2f/index.js"></script>
  24. {{end}}
  25. {{if .EnableCaptcha}}
  26. {{if eq .CaptchaType "recaptcha"}}
  27. <script src='{{ URLJoin .RecaptchaURL "api.js"}}' async></script>
  28. {{end}}
  29. {{end}}
  30. {{if .RequireTribute}}
  31. <script src="{{StaticUrlPrefix}}/vendor/plugins/tribute/tribute.min.js"></script>
  32. {{end}}
  33. {{if .PageIsHome}}
  34. <script src="{{StaticUrlPrefix}}/self/js/jquery.min.js?v={{MD5 AppVer}}"></script>
  35. <script src="/home/home.js?v={{MD5 AppVer}}" type="text/javascript"></script>
  36. {{end}}
  37. <script src="{{StaticUrlPrefix}}/js/jquery.js?v={{MD5 AppVer}}"></script>
  38. <script src="{{StaticUrlPrefix}}/fomantic/semantic.min.js?v={{MD5 AppVer}}"></script>
  39. <script src="{{StaticUrlPrefix}}/js/index.js?v={{MD5 AppVer}}"></script>
  40. {{template "custom/footer" .}}
  41. {{if .PageIsHome}}
  42. <script src="{{StaticUrlPrefix}}/vendor/plugins/jquery.particleground/jquery.particleground.min.js"></script>
  43. <script src="/rotation3D/vue-2.6.10.min.js"></script>
  44. <script src="/rotation3D/rotation3D.js?v={{MD5 AppVer}}"></script>
  45. <script>
  46. var app = new Vue({
  47. el: "#app",
  48. //数据 blue, green, yellow
  49. data: {
  50. itemList: [
  51. { name:'鹏城云脑一号', type:'blue', icon:'', },
  52. { name:'鹏城云脑二号', type:'blue', icon:'', },
  53. { name:'北大人工智能集群系统', type:'green', icon:'', },
  54. { name:'合肥类脑智能开放平台', type:'green', icon:'', },
  55. { name:'武汉人工智能计算中心', type:'green', icon:'', },
  56. { name:'西安未来人工智能计算中心', type:'green', icon:'', },
  57. { name:'中原人工智能计算中心', type:'green', icon:'', },
  58. { name:'成都人工智能计算中心', type:'green', icon:'', },
  59. { name:'横琴先进智能计算中心', type:'green', icon:'', },
  60. { name:'国家超级计算济南中心', type:'green', icon:'', },
  61. ],
  62. },
  63. mounted: function () {
  64. new Rotation3D({
  65. id: '#rotation3D',
  66. farScale: 0.6,
  67. // farScale: 1,
  68. xRadius: 0, //x半径压缩
  69. yRadius: 240, //y半径压缩
  70. // yRadius: 0, //y半径压缩
  71. autoPlay:true,
  72. autoPlayDelay:6000,
  73. })
  74. },
  75. methods: {},
  76. });
  77. </script>
  78. {{end}}
  79. </body>
  80. </html>