index.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>ip2location</title>
  7. <style>
  8. html {
  9. min-height: 100%;
  10. height: 100%;
  11. position: relative;
  12. }
  13. body {
  14. margin: 0;
  15. padding: 0;
  16. position: relative;
  17. width: 100%;
  18. min-height: 100%;
  19. height: 100%;
  20. height: auto;
  21. display: table;
  22. }
  23. .wrapper {
  24. padding: 15px;
  25. text-align: center;
  26. display: table-cell;
  27. vertical-align: middle;
  28. }
  29. h1, h2 {
  30. font-weight: 400;
  31. font-size: 34px;
  32. line-height: 36px;
  33. margin: 10px 0;
  34. }
  35. h2 {
  36. font-weight: 350;
  37. font-size: 14px;
  38. line-height: 18px;
  39. margin-bottom: 0;
  40. }
  41. @media only screen and (max-width:800px) {
  42. .wrapper {
  43. padding: 15px 0;
  44. }
  45. h1, h2 {
  46. padding: 0 15px;
  47. }
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <div class="wrapper">
  53. <h1>ip2location</h1>
  54. <h2>{{$.Data.Additional.ClientIP}}</h2>
  55. <h2>{{$.Data.Additional.GeoIPData}}</h2>
  56. </div>
  57. </body>
  58. </html>