Mate a vue y le dare con html plano
This commit is contained in:
36
resources/views/base.blade.php
Normal file
36
resources/views/base.blade.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
@section('title')
|
||||
<title>Daniel Cortés</title>
|
||||
@show
|
||||
<link href="css/app.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<nav>
|
||||
<div class="container">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="{{route('index')}}">Daniel Cortes</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{route('blog')}}">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{route('now')}}">Now</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{route('projects')}}">Projects</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{route('setup')}}">Setup</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
@yield('content')
|
||||
<script src="js/app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
9
resources/views/blog.blade.php
Normal file
9
resources/views/blog.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
@extends('base')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<h1>Blog</h1>
|
||||
<p>Cosas random que se me ocurren</p>
|
||||
<p>Algun dia van a haber posts aqui, lo prometo</p>
|
||||
</div>
|
||||
@endsection
|
||||
7
resources/views/index.blade.php
Normal file
7
resources/views/index.blade.php
Normal file
@@ -0,0 +1,7 @@
|
||||
@extends('base')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<h1>HOLA</h1>
|
||||
</div>
|
||||
@endsection
|
||||
7
resources/views/now.blade.php
Normal file
7
resources/views/now.blade.php
Normal file
@@ -0,0 +1,7 @@
|
||||
@extends('base')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<h1>HOLA</h1>
|
||||
</div>
|
||||
@endsection
|
||||
7
resources/views/projects.blade.php
Normal file
7
resources/views/projects.blade.php
Normal file
@@ -0,0 +1,7 @@
|
||||
@extends('base')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<h1>HOLA</h1>
|
||||
</div>
|
||||
@endsection
|
||||
7
resources/views/setup.blade.php
Normal file
7
resources/views/setup.blade.php
Normal file
@@ -0,0 +1,7 @@
|
||||
@extends('base')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<h1>HOLA</h1>
|
||||
</div>
|
||||
@endsection
|
||||
@@ -1,16 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Spa!</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<app></app>
|
||||
</div>
|
||||
|
||||
<script src="{{ mix('js/app.js') }}"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user