From 8170d5bc0544fbc02155b8b57751cd1dec33dd69 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 6 Apr 2021 10:57:50 +0000 Subject: initial public commit --- views/partials/bio.ejs | 19 ++++++++++++++ views/partials/categories.ejs | 8 ++++++ views/partials/footer.ejs | 3 +++ views/partials/header.ejs | 25 ++++++++++++++++++ views/partials/magicBio.ejs | 21 +++++++++++++++ views/partials/magicCats.ejs | 8 ++++++ views/partials/magicPops.ejs | 14 ++++++++++ views/partials/magicSets.ejs | 15 +++++++++++ views/partials/nav.ejs | 59 +++++++++++++++++++++++++++++++++++++++++++ views/partials/popular.ejs | 14 ++++++++++ views/partials/search.ejs | 18 +++++++++++++ views/partials/settings.ejs | 15 +++++++++++ 12 files changed, 219 insertions(+) create mode 100644 views/partials/bio.ejs create mode 100644 views/partials/categories.ejs create mode 100644 views/partials/footer.ejs create mode 100644 views/partials/header.ejs create mode 100644 views/partials/magicBio.ejs create mode 100644 views/partials/magicCats.ejs create mode 100644 views/partials/magicPops.ejs create mode 100644 views/partials/magicSets.ejs create mode 100644 views/partials/nav.ejs create mode 100644 views/partials/popular.ejs create mode 100644 views/partials/search.ejs create mode 100644 views/partials/settings.ejs (limited to 'views/partials') diff --git a/views/partials/bio.ejs b/views/partials/bio.ejs new file mode 100644 index 0000000..198aa27 --- /dev/null +++ b/views/partials/bio.ejs @@ -0,0 +1,19 @@ +
+
+

<%= account.bio.name %>

+
    +
  • +

    Email:

    +

    <%= account.author.username %>

    +
  • +
  • +

    Website:

    +

    <%= account.bio.website %>

    +
  • +
  • +

    About:

    +

    <%= account.bio.about %>

    +
  • +
+
+
\ No newline at end of file diff --git a/views/partials/categories.ejs b/views/partials/categories.ejs new file mode 100644 index 0000000..638b2bb --- /dev/null +++ b/views/partials/categories.ejs @@ -0,0 +1,8 @@ +
+

Categories

+ +
\ No newline at end of file diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs new file mode 100644 index 0000000..89a9ee1 --- /dev/null +++ b/views/partials/footer.ejs @@ -0,0 +1,3 @@ + + + diff --git a/views/partials/header.ejs b/views/partials/header.ejs new file mode 100644 index 0000000..13a6cf0 --- /dev/null +++ b/views/partials/header.ejs @@ -0,0 +1,25 @@ + + + + + + Recipes + + + + + +<% if(error && error.length > 0) { %> + + + +<% } %> +<% if(success && success.length > 0) { %> +
+ +
+<% } %> diff --git a/views/partials/magicBio.ejs b/views/partials/magicBio.ejs new file mode 100644 index 0000000..4d448a1 --- /dev/null +++ b/views/partials/magicBio.ejs @@ -0,0 +1,21 @@ +
+
+

<%= account.bio.name %>

+
    + <% if(usr) { %> +
  • +

    Email:

    +

    <%= account.author.username %>

    +
  • + <% } %> +
  • +

    Website:

    +

    <%= account.bio.website %>

    +
  • +
  • +

    About:

    +

    <%= account.bio.about %>

    +
  • +
+
+
diff --git a/views/partials/magicCats.ejs b/views/partials/magicCats.ejs new file mode 100644 index 0000000..fb49d05 --- /dev/null +++ b/views/partials/magicCats.ejs @@ -0,0 +1,8 @@ +
+

Categories

+
    + <% cats.map(c => { %> +
  • <%= c %>
  • + <% }) %> +
+
diff --git a/views/partials/magicPops.ejs b/views/partials/magicPops.ejs new file mode 100644 index 0000000..3583b7b --- /dev/null +++ b/views/partials/magicPops.ejs @@ -0,0 +1,14 @@ +
+

Popular

+
+ <% popular.map(p => { %> + + <% }) %> +
+
diff --git a/views/partials/magicSets.ejs b/views/partials/magicSets.ejs new file mode 100644 index 0000000..b61d3bb --- /dev/null +++ b/views/partials/magicSets.ejs @@ -0,0 +1,15 @@ +
+

Settings

+ +
diff --git a/views/partials/nav.ejs b/views/partials/nav.ejs new file mode 100644 index 0000000..838d228 --- /dev/null +++ b/views/partials/nav.ejs @@ -0,0 +1,59 @@ + \ No newline at end of file diff --git a/views/partials/popular.ejs b/views/partials/popular.ejs new file mode 100644 index 0000000..af83f34 --- /dev/null +++ b/views/partials/popular.ejs @@ -0,0 +1,14 @@ +
+

Popular

+
+ <% popular.map(p => { %> + + <% }) %> +
+
diff --git a/views/partials/search.ejs b/views/partials/search.ejs new file mode 100644 index 0000000..f838b4c --- /dev/null +++ b/views/partials/search.ejs @@ -0,0 +1,18 @@ + + + \ No newline at end of file diff --git a/views/partials/settings.ejs b/views/partials/settings.ejs new file mode 100644 index 0000000..08ac1cd --- /dev/null +++ b/views/partials/settings.ejs @@ -0,0 +1,15 @@ +
+

Settings

+ +
\ No newline at end of file -- cgit v1.2.3