developing.blade.php 626 B

12345678910111213141516171819202122232425262728293031
  1. @extends('module.layouts.content')
  2. @push('meta')
  3. @endpush
  4. @push('css')
  5. <link href="{{ theme_asset('app/css/common.css') }}" rel="stylesheet">
  6. <link rel="stylesheet" type="text/css" href="{{ theme_asset('app/css/gansu.css') }}"/>
  7. <style>
  8. body{background-color:#f5f5f5;}
  9. </style>
  10. @endpush
  11. @push('js')
  12. @endpush
  13. @section('content')
  14. <div class="developing">
  15. <div class="developing_banner"></div>
  16. <div class="developing_content"></div>
  17. <p>功能完善中,近期上线,敬请期待...</p>
  18. </div>
  19. @endsection
  20. @section('script')
  21. <script>
  22. </script>
  23. @endsection