From 3e56bad8de055eb3fa176ce19d961a6ed860c197 Mon Sep 17 00:00:00 2001 From: Lucilio Correia Date: Fri, 8 Nov 2024 14:08:17 -0300 Subject: [PATCH] add: theme templates --- parts/cabe-alho.html | 0 parts/content-index.html | 1 + parts/content-post.html | 1 + parts/content.html | 1 + parts/footer.html | 20 +------ parts/header-2.html | 35 ----------- parts/header.html | 37 ++++++++++++ parts/noticia.html | 7 +++ patterns/content-index.php | 54 +++++++++++++++++ patterns/content-post.php | 50 ++++++++++++++++ patterns/content.php | 118 +++++++++++++++++++++++++++++++++++++ patterns/footer.php | 26 ++++++++ patterns/news-item.php | 56 ++++++++++++++++++ patterns/read-more.php | 32 ++++++++++ templates/home.html | 5 ++ templates/index.html | 6 +- templates/post.html | 5 ++ 17 files changed, 398 insertions(+), 56 deletions(-) delete mode 100644 parts/cabe-alho.html create mode 100644 parts/content-index.html create mode 100644 parts/content-post.html create mode 100644 parts/content.html delete mode 100644 parts/header-2.html create mode 100644 parts/noticia.html create mode 100644 patterns/content-index.php create mode 100644 patterns/content-post.php create mode 100644 patterns/content.php create mode 100644 patterns/footer.php create mode 100644 patterns/news-item.php create mode 100644 patterns/read-more.php create mode 100644 templates/home.html create mode 100644 templates/post.html diff --git a/parts/cabe-alho.html b/parts/cabe-alho.html deleted file mode 100644 index e69de29..0000000 diff --git a/parts/content-index.html b/parts/content-index.html new file mode 100644 index 0000000..3a397ca --- /dev/null +++ b/parts/content-index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/parts/content-post.html b/parts/content-post.html new file mode 100644 index 0000000..087fb79 --- /dev/null +++ b/parts/content-post.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/parts/content.html b/parts/content.html new file mode 100644 index 0000000..91b7cc3 --- /dev/null +++ b/parts/content.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/parts/footer.html b/parts/footer.html index aeb03d6..633f089 100644 --- a/parts/footer.html +++ b/parts/footer.html @@ -1,19 +1 @@ - -
- -
- \ No newline at end of file + \ No newline at end of file diff --git a/parts/header-2.html b/parts/header-2.html deleted file mode 100644 index fe3d760..0000000 --- a/parts/header-2.html +++ /dev/null @@ -1,35 +0,0 @@ - -
-
- -
- - - -
- - - -
-
- -
-
-
- \ No newline at end of file diff --git a/parts/header.html b/parts/header.html index e69de29..bc369d9 100644 --- a/parts/header.html +++ b/parts/header.html @@ -0,0 +1,37 @@ + +
+ + + + + + + + + +
+ + + + + + + +
+ \ No newline at end of file diff --git a/parts/noticia.html b/parts/noticia.html new file mode 100644 index 0000000..cc0d17a --- /dev/null +++ b/parts/noticia.html @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/patterns/content-index.php b/patterns/content-index.php new file mode 100644 index 0000000..b49b06e --- /dev/null +++ b/patterns/content-index.php @@ -0,0 +1,54 @@ + + + + +
+ +
+ + + +
+ + + + + +

+ +
+ + + +
+

+ + + +
+ +
+ + + +
+ + + + + +

+ +
+
+ \ No newline at end of file diff --git a/patterns/content-post.php b/patterns/content-post.php new file mode 100644 index 0000000..10dc375 --- /dev/null +++ b/patterns/content-post.php @@ -0,0 +1,50 @@ + + + + + + +
+
+ + + +
+ + + +
+
+ + + +
+

+ + + +
+ +
+ + + +
+ + + + + +

+ +
+
+ \ No newline at end of file diff --git a/patterns/content.php b/patterns/content.php new file mode 100644 index 0000000..3cf2ff4 --- /dev/null +++ b/patterns/content.php @@ -0,0 +1,118 @@ + + +
+
+
+ +
+ + + +
+ + + + + +

+ +
+
+ + + +
+
+ +
+ + + +
+ + + + + +

+ +
+
+
+ + + +
+ +
+ + + +
+ + + + + +

+ +
+ + + +
+ +
+ + + +
+ + + + + +

+ +
+ + + +
+

+ + + +
+ +
+ + + +
+ + + + + +

+ +
+
+ \ No newline at end of file diff --git a/patterns/footer.php b/patterns/footer.php new file mode 100644 index 0000000..47c8246 --- /dev/null +++ b/patterns/footer.php @@ -0,0 +1,26 @@ + + +
+ +
+ \ No newline at end of file diff --git a/patterns/news-item.php b/patterns/news-item.php new file mode 100644 index 0000000..b4ac003 --- /dev/null +++ b/patterns/news-item.php @@ -0,0 +1,56 @@ + + +
+ + + + +
+ \ No newline at end of file diff --git a/patterns/read-more.php b/patterns/read-more.php new file mode 100644 index 0000000..ff14f56 --- /dev/null +++ b/patterns/read-more.php @@ -0,0 +1,32 @@ + + +
+

+ + + +
+ +
+ + + +
+ + + + + +

+ +
+
+ \ No newline at end of file diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..730c166 --- /dev/null +++ b/templates/home.html @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 4c5290c..6916a88 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,3 +1,5 @@ - + - \ No newline at end of file + + + \ No newline at end of file diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..918576b --- /dev/null +++ b/templates/post.html @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file