diff --git a/themes/pinitema/layouts/_default/list.html b/themes/pinitema/layouts/_default/list.html index 6ebf454..7f20de4 100644 --- a/themes/pinitema/layouts/_default/list.html +++ b/themes/pinitema/layouts/_default/list.html @@ -1,3 +1,9 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +

{{ .Title }}

{{ range .Pages.ByPublishDate.Reverse }}

@@ -7,3 +13,7 @@

{{ end }} +
+{{- partial "footer.html" . -}} + + \ No newline at end of file diff --git a/themes/pinitema/layouts/index.html b/themes/pinitema/layouts/index.html index 083680c..393d734 100644 --- a/themes/pinitema/layouts/index.html +++ b/themes/pinitema/layouts/index.html @@ -5,15 +5,10 @@ {{- partial "header.html" . -}}
{{ define "main" }} -

{{ .Title }}

-{{ range .Pages.ByPublishDate.Reverse }} -

-

{{ .Title }}

- -

{{ .Summary }}

-
-

-{{ end }} + + {{- range (.Paginate ( first 3 .Pages.ByDate )).Pages }} +
  • {{ .Title }}
  • + {{- end}} {{ end }} {{- block "main" . }}{{- end }}
    diff --git a/themes/pinitema/layouts/partials/header.html b/themes/pinitema/layouts/partials/header.html index 4f93b15..336c284 100644 --- a/themes/pinitema/layouts/partials/header.html +++ b/themes/pinitema/layouts/partials/header.html @@ -1 +1,12 @@ -

    Hola!

    \ No newline at end of file +
    + +
    Hamburguesa
    +
    + \ No newline at end of file diff --git a/themes/pinitema/static/css/style.css b/themes/pinitema/static/css/style.css new file mode 100644 index 0000000..0aafb48 --- /dev/null +++ b/themes/pinitema/static/css/style.css @@ -0,0 +1 @@ +header {width: 90%; margin: 1em auto 0 auto; display: flex; flex-direction: row; justify-content: space-between;} \ No newline at end of file