Code Monkey home page Code Monkey logo

website-1's Introduction

801 Labs site

Current hackerspace website

Tools: HTML, CSS, JavaScript, Bulma CSS framework, Hugo static site framework

Hire: Veronica Eulenberg (HappyViki) is actively looking for work in Salt Lake City, Utah.

  • Full stack developer, see: veronicodes.com
  • Tools, software, and frameworks: CSS, HTML, JavaScript, jQuery, ReactJS, Node, NPM, Babel, Webpack, Axios, Express, WordPress, WooCommerce, All Import Pro, Avada WordPress theme, Beaver Builder, Bootstrap, Bulma, Hugo, PHP, GIT, GitHub, MySQL, PHPMyAdmin, GoDaddy, BlueHost, HostGator, Bash, Python, THE INTERNET (to look things up) and PHONE (to talk to people)

Contact HappyViki through 801Labs Slack or UtahJS Slack if you have any questions about 801 Labs site.

Guide

Hugo Docs | Bulma Docs

Look at the site:

clone https://github.com/801labs/website.git
cd website
hugo server

Go to http://localhost:1313/

Deploy the site:

cd website
hugo

It's inside /website/public

If you have serve, you can look at the build:

cd website
serve public

Go to http://localhost:5000

Page Structure

Logos: /website/layouts/partials/logos/

CSS/JS/IMG: /website/static/ -> href="{{ "[css/js/img]/[file name]" | absURL }}"

Create a page:

Change how pages are created: /website/archetypes

hugo new [page-name.html] -> /website/content/[page-name.html]

Default (default.html) page:

---
title: "{{ replace .Name "-" " " | title }}" \\ Page Name
date: {{ .Date }} \\ Example: 2019-12-17T16:34:31-07:00
draft: true \\ This is default, change to 'false' when ready
---

<section class="section has-text-centered">
  <div class="container">
    <h1 class="title">{{ replace .Name "-" " " | title }}</h1> \\ Page Name
  </div>
</section>

<!-- Body Of Page -->

Navigation:

Layout: /website/layouts/partials/menus/main-menu.html

Menu items: /website/config.toml

Example with meanings:

[menu]

  [[menu.main]]
    name = "Home"
    url = "/"
    weight = 100 // Where the item is placed in menu, low to high

  [[menu.main]]
    identifier = "about" // Name of parent, aka submenu init
    name = "About"
    url = "/about/"
    weight = 200

  [[menu.main]]
    parent = "about" // Name of parent, aka submenu item
    name = "Events"
    url = "/events/"
    weight = 300

  [[menu.main]] // Stand alone item with no parent
      name = "Get Involved" 
      url = "/get-involved/"
      weight = 600

website-1's People

Contributors

happyviki avatar matweaver7 avatar miketweaver avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.