diff --git a/templates/libros/_menu-libros.html b/templates/libros/_menu-libros.html
deleted file mode 100644
index 9dd4c6d..0000000
--- a/templates/libros/_menu-libros.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-{% endblock %}
diff --git a/templates/libros/form_autor.html b/templates/libros/form_autor.html
deleted file mode 100644
index a339835..0000000
--- a/templates/libros/form_autor.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{% extends 'base.html' %}
-
-{% block menuapp %}
-
-{% include 'libros/_menu-libros.html' %}
-
-{% endblock menuapp %}
-
-{% block content %}
-
-
-
{% if form.instance.pk %}Editar Autor{% else %}Nuevo Autor{% endif %}
-
-
-{% endblock %}
diff --git a/templates/libros/form_libro.html b/templates/libros/form_libro.html
deleted file mode 100644
index 23b7572..0000000
--- a/templates/libros/form_libro.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% extends 'base.html' %}
-
-{% block menuapp %}
-
-{% include 'libros/_menu-libros.html' %}
-
-{% endblock menuapp %}
-
-{% block content %}
-
-
{% if form.instance.pk %}Editar Libro{% else %}Nuevo Libro{% endif %}
-
-
-{% endblock %}
diff --git a/templates/libros/index.html b/templates/libros/index.html
deleted file mode 100644
index 4af97ab..0000000
--- a/templates/libros/index.html
+++ /dev/null
@@ -1,33 +0,0 @@
-{% extends 'base.html' %}
-
-{% block menuapp %}
-
-{% include 'libros/_menu-libros.html' %}
-
-{% endblock menuapp %}
-
-{% block content %}
-
-
-
-
Introducción
-
-
-
-
-
¡Bienvenido a la gestión de libros!
-
-
-
-
-
-
-
-
-
-
-{% endblock %}
diff --git a/templates/libros/lista_autores.html b/templates/libros/lista_autores.html
deleted file mode 100644
index 394fc68..0000000
--- a/templates/libros/lista_autores.html
+++ /dev/null
@@ -1,77 +0,0 @@
-{% extends 'base.html' %}
-
-{% block menuapp %}
-
-{% include 'libros/_menu-libros.html' %}
-
-{% endblock menuapp %}
-
-{% block content %}
-
-
-
-
-
-
- {% for autor in autores %}
-
-
-
-
- {% if autor.foto %}
-

- {% else %}
- Sin imágen
- {% endif %}
-
-
-
-
-
-
-
- {% endfor %}
-
-
-{% endblock %}
diff --git a/templates/libros/lista_libros.html b/templates/libros/lista_libros.html
deleted file mode 100644
index 1c59522..0000000
--- a/templates/libros/lista_libros.html
+++ /dev/null
@@ -1,77 +0,0 @@
-{% extends 'base.html' %}
-
-{% block menuapp %}
-
-{% include 'libros/_menu-libros.html' %}
-
-{% endblock menuapp %}
-
-{% block content %}
-
-
-
-
-
-
- {% for libro in libros %}
-
-
-
- {% if libro.portada %}
-

- {% else %}
- Sin imágen
- {% endif %}
-
-
-
-
-
-
-
-
- {% endfor %}
-
-
-{% endblock %}