Examples of code I've written in PHP, Javascript, SCSS, etc.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

26 linhas
614 B

  1. @extends('master')
  2. @section('title', 'Home')
  3. @section('heading-style', 'info-page')
  4. @section('head-metas')
  5. @parent
  6. <link rel="stylesheet" href="/css/panel.css">
  7. @endsection
  8. @section('content')
  9. <main>
  10. <div class="info-heading">
  11. <h3>To continue, we need to make sure your email address is yours. Click the verification link we've sent to you.</h3>
  12. <button id="resend_verification" class="brand-button">Resend</button>
  13. </div>
  14. </main>
  15. @endsection
  16. @section('scripts')
  17. @parent
  18. <script src="js/app.js"></script>
  19. <script src="js/chunk-vendors.js"></script>
  20. <!-- <script src="main.js"></script> -->
  21. @endsection