A ChatGPT based emulation of the therapist Doctor Kernel from the book "A digital Affair" by Neora Shem Shaul
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

logs.tmpl 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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">
  6. <title>Doctor Kernel's session logs &mdash; [JJ]</title>
  7. <link href="css/bootstrap.min.css" rel="stylesheet">
  8. </head>
  9. <body>
  10. <div class="container">
  11. <div class="row">
  12. <div class="col-12">
  13. <div class="jumbotron text-center">
  14. <br/>
  15. <h1>Doctor Kernel's session logs</h1>
  16. <h3>Patient: JJ</h3>
  17. </div>
  18. <div class="alert alert-danger text-center">*** CONFIDENTIAL ***</div>
  19. </div>
  20. </div>
  21. <div class="row">
  22. <div class="col-12">
  23. <ul class="list-group text-center">
  24. {{#filenames}}
  25. <li class="list-group-item">
  26. <a target="_blank" class="btn btn-success" href="{{.}}">[{{.}}]</a>
  27. </li>
  28. {{/filenames}}
  29. </ul>
  30. </div>
  31. </div>
  32. <div class="row">
  33. <div class="col-12">
  34. <div class="alert alert-warning text-center">*** VERTRAULICH ***</div>
  35. </div>
  36. </div>
  37. <script src="js/bootstrap.min.js"></script>
  38. </body>
  39. </html>