privacy.html 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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>隐私政策 - {$title}</title>
  7. <link href="{$logo}" rel="icon">
  8. <style>
  9. header,body{
  10. margin: 0;
  11. padding: 0;
  12. }
  13. header{
  14. box-shadow: 0 0 10px #e1e1e1;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <header style="background: #ffffff;z-index: 10;position: sticky;top: 0">
  20. <div style="max-width: 1000px;align-items: center;padding: 15px;margin: 0 auto;display: flex;justify-content: space-between;">
  21. <div style="font-size: 25px;font-weight: bolder;display: flex;align-items: center;gap: 15px">
  22. <img src="{$logo}" alt="logo" style="width: 40px;height: 40px" />
  23. {$title}
  24. </div>
  25. <a href="/" style="padding: 10px 20px;border-radius: 6px;background: #1e9fff;color: #FFFFFF;text-decoration: none;font-size: 13px">首页</a>
  26. </div>
  27. </header>
  28. <div style="max-width: 1000px;padding: 15px;margin: 0 auto;">
  29. {$content|raw}
  30. </div>
  31. </body>
  32. </html>