agrege meta tags y descubri que necesito descripciones sobre los blogs

This commit is contained in:
Daniel Cortés
2019-10-17 01:56:05 -03:00
parent 78e93f1c86
commit 877477503c
8 changed files with 39 additions and 1 deletions

View File

@@ -1,2 +1,4 @@
User-agent: * User-agent: *
Disallow: Disallow: /admin
Disallow: /login
Disallow: /logout

View File

@@ -3,6 +3,10 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="autor" content="Daniel Cortés">
@section('meta-description')
<meta name="description" content="Hey, se un poco de programacion y queria crear una pagina :3">
@show
@section('title') @section('title')
<title>Daniel Cortés</title> <title>Daniel Cortés</title>
@show @show

View File

@@ -1,5 +1,9 @@
@extends('base') @extends('base')
@section('meta-description')
<meta name="description" content="Archivo del blog">
@endsection
@section('content') @section('content')
<article> <article>
<h1>Archivo</h1> <h1>Archivo</h1>

View File

@@ -1,5 +1,13 @@
@extends('base') @extends('base')
@section('meta-description')
<meta name="description" content="Mi pequeño blog en el que pienso postear principalmente snipets de codigo, o si me emociono, alguna cosa buena">
@endsection
@section('title')
<title>Blog - Daniel Cortes</title>
@endsection
@php @php
$parse = new Parsedown(); $parse = new Parsedown();
@endphp @endphp

View File

@@ -4,6 +4,14 @@
$parse = new Parsedown(); $parse = new Parsedown();
@endphp @endphp
@section('meta-description')
<meta name="description" content="Aun no pongo descripciones QuQ">
@endsection
@section('title')
<title>{{$post->title}} - Daniel Cortes</title>
@endsection
@section('content') @section('content')
<article> <article>
<header> <header>

View File

@@ -4,6 +4,10 @@
$parse = new Parsedown(); $parse = new Parsedown();
@endphp @endphp
@section('meta-description')
<meta name="description" content="Mi pagina Now, inspirada por nownownow.com">
@endsection
@section('content') @section('content')
<article> <article>
<header> <header>

View File

@@ -4,6 +4,10 @@
$parse = new Parsedown(); $parse = new Parsedown();
@endphp @endphp
@section('meta-description')
<meta name="description" content="Todos mis projectos personales que quiero compartir">
@endsection
@section('content') @section('content')
@foreach($projects as $project) @foreach($projects as $project)
<article> <article>

View File

@@ -4,6 +4,10 @@
$parse = new Parsedown(); $parse = new Parsedown();
@endphp @endphp
@section('meta-description')
<meta name="description" content="Los setups que he ido utilizando en linux">
@endsection
@section('content') @section('content')
@foreach($setups as $setup) @foreach($setups as $setup)
<article> <article>