back.html 649 B

123456789101112131415161718192021222324
  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>{dreamer-cms:global name="title" /}</title>
  7. <style>
  8. .back-up a{
  9. text-decoration: none;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <section>
  15. <div class="container">
  16. <div class="row pt-2 pt-xl-3">
  17. <a class="back-up" href="javascript:window.history.go(-1);"
  18. style="text-decoration: none;color: rgb(137, 137, 137);">&lt;
  19. 点击返回列表</a>
  20. </div>
  21. </div>
  22. </section>
  23. </body>
  24. </html>