Mate a vue y le dare con html plano

This commit is contained in:
Daniel Cortés
2019-06-20 22:21:24 -04:00
parent 0d30626baa
commit a3a974d750
37 changed files with 1263 additions and 30125 deletions

View 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>

View 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

View File

@@ -0,0 +1,7 @@
@extends('base')
@section('content')
<div class="container">
<h1>HOLA</h1>
</div>
@endsection

View File

@@ -0,0 +1,7 @@
@extends('base')
@section('content')
<div class="container">
<h1>HOLA</h1>
</div>
@endsection

View File

@@ -0,0 +1,7 @@
@extends('base')
@section('content')
<div class="container">
<h1>HOLA</h1>
</div>
@endsection

View File

@@ -0,0 +1,7 @@
@extends('base')
@section('content')
<div class="container">
<h1>HOLA</h1>
</div>
@endsection

View File

@@ -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>