diff --git a/archetypes/facilities.md b/archetypes/facilities.md index 0cf54d7..ffdcbcf 100644 --- a/archetypes/facilities.md +++ b/archetypes/facilities.md @@ -1,5 +1,5 @@ --- -title: "{{ replace .Name "-" " " | title }}" -icon: "" +title: "{{ replace .Name "_" " " | title }}" +subtitle: "" --- diff --git a/config.toml b/config.toml index 3077b34..de0dfb7 100644 --- a/config.toml +++ b/config.toml @@ -8,6 +8,25 @@ company = "Leigh Hackspace CIC" company_number = "09404083" copyright_years = "2023" +# Header links +[menu] +[[menu.main]] +name = "About" +pageRef = "/about" + +[[menu.main]] +name = "Facilities" +pageRef = "/facilities" + +[[menu.main]] +name = "Blog" +pageRef = "/blog" + +[[menu.main]] +name = "Contact" +pageRef = "contact" + +# Social links [[params.social]] name = "twitter" url = "https://twitter.com/leigh_hackspace" diff --git a/content/facilities/_index.md b/content/facilities/_index.md index a26ba6e..a7881ab 100644 --- a/content/facilities/_index.md +++ b/content/facilities/_index.md @@ -1,5 +1,5 @@ --- -title: Facilities +title: Our Facilities subtitle: Explore Leigh Hackspace's facilities. layout: single --- diff --git a/content/facilities/craft_space.md b/content/facilities/craft_space.md new file mode 100644 index 0000000..cb47f10 --- /dev/null +++ b/content/facilities/craft_space.md @@ -0,0 +1,5 @@ +--- +title: "Craft Space" +subtitle: "A working area for sewing, textiles and other crafts." +--- + diff --git a/content/facilities/electronics.md b/content/facilities/electronics.md index 9796069..815d513 100644 --- a/content/facilities/electronics.md +++ b/content/facilities/electronics.md @@ -1,3 +1,5 @@ --- -title: Electronics +title: Electronics Bay +subtitle: Tools and components to create circuits and projects. +hero_bg_image: /facilities/electronics.jpg --- \ No newline at end of file diff --git a/content/facilities/fabrication.md b/content/facilities/fabrication.md index a7755b7..59492ab 100644 --- a/content/facilities/fabrication.md +++ b/content/facilities/fabrication.md @@ -1,5 +1,5 @@ --- title: Fabrication subtitle: Use 3D printers and laser cutters to bring your creations to life. -hero-bg-image: facilities/fabrication.jpg +hero_bg_image: /facilities/fabrication.jpg --- \ No newline at end of file diff --git a/content/facilities/main_space.md b/content/facilities/main_space.md new file mode 100644 index 0000000..3d236ac --- /dev/null +++ b/content/facilities/main_space.md @@ -0,0 +1,5 @@ +--- +title: "Main Space" +subtitle: "Our general use space, for activities that need a bit more room." +--- + diff --git a/content/facilities/pi_room.md b/content/facilities/pi_room.md new file mode 100644 index 0000000..d88c6f0 --- /dev/null +++ b/content/facilities/pi_room.md @@ -0,0 +1,5 @@ +--- +title: "Pi Room" +subtitle: "Open access computers, and co-working space." +--- + diff --git a/content/facilities/social_space.md b/content/facilities/social_space.md new file mode 100644 index 0000000..40f0aa1 --- /dev/null +++ b/content/facilities/social_space.md @@ -0,0 +1,6 @@ +--- +title: "Social Space" +subtitle: "A social area to relax and run events from." +hero_bg_image: "/facilities/social_space.jpg" +--- + diff --git a/content/facilities/workshop.md b/content/facilities/workshop.md index 851bbc4..289969b 100644 --- a/content/facilities/workshop.md +++ b/content/facilities/workshop.md @@ -1,6 +1,6 @@ --- title: Workshop -subtitle: Use machinary and +subtitle: Hand tools and machinery to work with wood and metal. hero_bg_image: /facilities/workshop.jpg --- sdfsdfsdfdf \ No newline at end of file diff --git a/static/facilities/electronics.jpg b/static/facilities/electronics.jpg new file mode 100644 index 0000000..877d464 Binary files /dev/null and b/static/facilities/electronics.jpg differ diff --git a/static/facilities/social_space.jpg b/static/facilities/social_space.jpg new file mode 100644 index 0000000..e93c941 Binary files /dev/null and b/static/facilities/social_space.jpg differ diff --git a/themes/lhs/layouts/page/membership.html b/themes/lhs/layouts/page/membership.html index daff2c9..8f4990c 100644 --- a/themes/lhs/layouts/page/membership.html +++ b/themes/lhs/layouts/page/membership.html @@ -14,8 +14,7 @@
- +
diff --git a/themes/lhs/layouts/partials/design/bigcta.html b/themes/lhs/layouts/partials/design/bigcta.html index bf26869..b10b76b 100644 --- a/themes/lhs/layouts/partials/design/bigcta.html +++ b/themes/lhs/layouts/partials/design/bigcta.html @@ -3,8 +3,7 @@
- +
diff --git a/themes/lhs/layouts/partials/footer.html b/themes/lhs/layouts/partials/footer.html index 823f908..dcb851c 100644 --- a/themes/lhs/layouts/partials/footer.html +++ b/themes/lhs/layouts/partials/footer.html @@ -3,20 +3,15 @@
- - - - +

Where we are

Leigh Hackspace
- Leigh Spinners Mill (3rd Floor)
- Park Lane
- Leigh
+ Unit 3.14, Leigh Spinners Mill
+ Park Lane, Leigh
WN7 2LB
@@ -59,7 +54,7 @@
-
+

© {{ .Site.Params.company }} {{ .Site.Params.copyright_years }} | Initial website by COSMOS
{{ .Site.Title }} is a trading name of {{ .Site.Params.Company }}, registered in England & Wales No. {{ .Site.Params.company_number }}

diff --git a/themes/lhs/layouts/partials/head.html b/themes/lhs/layouts/partials/head.html index 23322dc..f464acc 100644 --- a/themes/lhs/layouts/partials/head.html +++ b/themes/lhs/layouts/partials/head.html @@ -1,8 +1,15 @@ -{{ block "title" . }}{{ .Site.Title }}{{ end }} +{{ block "title" . }}{{ .Site.Title }} - {{ .Title }}{{ end }} - \ No newline at end of file + + + \ No newline at end of file diff --git a/themes/lhs/layouts/partials/header.html b/themes/lhs/layouts/partials/header.html index 53b28bf..028f499 100644 --- a/themes/lhs/layouts/partials/header.html +++ b/themes/lhs/layouts/partials/header.html @@ -3,7 +3,8 @@