home.blade.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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: 10px;">
  18. <h3>欢迎使用Moell Blog!</h3>
  19. <strong>简介</strong>
  20. <p> Moell Blog 是一个基于Laravel开发,支持markdown语法开源的简易博客,致力于给博主更好的写作体验。</p>
  21. <strong>开发者信息</strong>
  22. <p>Name : Moell</p>
  23. <p>Email : moell91@foxmail.com</p>
  24. <p>博客地址 : <a href="http://moell.cn" target="_blank">Moell Blog</a></p>
  25. <p>项目地址 : <a href="https://github.com/moell-peng/moell-blog" target="_blank">Github</a></p>
  26. <strong>依赖开源程序</strong>
  27. <ul>
  28. <li>LAMP</li>
  29. <li>
  30. <a href="https://laravel.com/" target="_blank">Laravel</a>
  31. </li>
  32. <li>
  33. <a href="https://www.almsaeedstudio.com" target="_blank">
  34. AdminLTE
  35. </a>
  36. </li>
  37. <li>
  38. <a href="http://getbootstrap.com/" target="_blank">
  39. Bootstrap
  40. </a>
  41. </li>
  42. <li>
  43. <a href="https://pandao.github.io/editor.md/examples/index.html" target="_blank">
  44. Editor.md
  45. </a>
  46. </li>
  47. <li>
  48. <a href="https://github.com/andersao/l5-repository" target="_blank">
  49. andersao/l5-repository
  50. </a>
  51. </li>
  52. <li>
  53. <a href="https://github.com/etrepat/baum" target="_blank">
  54. etrepat/baum
  55. </a>
  56. </li>
  57. </ul>
  58. <strong>关于问题反馈</strong>
  59. <p>
  60. 可以发送Email,或者在Github上反馈遇到的问题,看到后会逐一帮助解决问题,务必将问题描述清楚。
  61. </p>
  62. </div>
  63. </div>
  64. </div>
  65. @endsection