home.blade.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @extends('layouts.backend')
  2. @section('title', 'Moell Blog')
  3. @section('header')
  4. <h1>
  5. Home
  6. <small>Moell Blog</small>
  7. </h1>
  8. @endsection
  9. @section('content')
  10. <style>
  11. p {
  12. text-indent: 10px;
  13. }
  14. </style>
  15. <div class="row">
  16. <div class="col-xs-12">
  17. <div class="box box-solid" style="padding: 20px;">
  18. <strong>开发者信息</strong>
  19. <p>Name : moell</p>
  20. <p>Email : moell91@foxmail.com</p>
  21. <p>博客地址 : <a href="http://moell.cn" target="_blank">moell</a></p>
  22. <p>项目地址 : <a href="https://github.com/moell-peng/moell-blog" target="_blank">Github</a></p>
  23. <strong>依赖开源程序</strong>
  24. <ul>
  25. <li>LAMP</li>
  26. <li>
  27. <a href="https://laravel.com/" target="_blank">Laravel</a>
  28. </li>
  29. <li>
  30. <a href="https://www.almsaeedstudio.com" target="_blank">
  31. AdminLTE
  32. </a>
  33. </li>
  34. <li>
  35. <a href="http://getbootstrap.com/" target="_blank">
  36. Bootstrap
  37. </a>
  38. </li>
  39. <li>
  40. <a href="https://github.com/erusev/parsedown" target="_blank">
  41. erusev/parsedown
  42. </a>
  43. </li>
  44. <li>
  45. <a href="https://github.com/sparksuite/simplemde-markdown-editor" target="_blank">
  46. SimpleMDE - Markdown Editor
  47. </a>
  48. </li>
  49. <li>
  50. <a href="https://github.com/etrepat/baum" target="_blank">
  51. etrepat/baum
  52. </a>
  53. </li>
  54. </ul>
  55. <strong>关于问题反馈</strong>
  56. <p>
  57. 可以发送Email,或者在Github上反馈遇到的问题,看到后会逐一帮助解决问题,务必将问题描述清楚。
  58. </p>
  59. </div>
  60. </div>
  61. </div>
  62. @endsection