feat-hugo #1
154
.gitignore
vendored
|
@ -0,0 +1,154 @@
|
||||||
|
### Hugo ###
|
||||||
|
# Generated files by hugo
|
||||||
|
/public/
|
||||||
|
/resources/_gen/
|
||||||
|
/assets/jsconfig.json
|
||||||
|
hugo_stats.json
|
||||||
|
|
||||||
|
# Executable may be added to repository
|
||||||
|
hugo.exe
|
||||||
|
hugo.darwin
|
||||||
|
hugo.linux
|
||||||
|
|
||||||
|
# Temporary lock file while building
|
||||||
|
/.hugo_build.lock
|
||||||
|
|
||||||
|
### Node ###
|
||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
.pnpm-debug.log*
|
||||||
|
|
||||||
|
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||||
|
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||||
|
|
||||||
|
# Runtime data
|
||||||
|
pids
|
||||||
|
*.pid
|
||||||
|
*.seed
|
||||||
|
*.pid.lock
|
||||||
|
|
||||||
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||||
|
lib-cov
|
||||||
|
|
||||||
|
# Coverage directory used by tools like istanbul
|
||||||
|
coverage
|
||||||
|
*.lcov
|
||||||
|
|
||||||
|
# nyc test coverage
|
||||||
|
.nyc_output
|
||||||
|
|
||||||
|
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||||
|
.grunt
|
||||||
|
|
||||||
|
# Bower dependency directory (https://bower.io/)
|
||||||
|
bower_components
|
||||||
|
|
||||||
|
# node-waf configuration
|
||||||
|
.lock-wscript
|
||||||
|
|
||||||
|
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||||
|
build/Release
|
||||||
|
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
jspm_packages/
|
||||||
|
|
||||||
|
# Snowpack dependency directory (https://snowpack.dev/)
|
||||||
|
web_modules/
|
||||||
|
|
||||||
|
# TypeScript cache
|
||||||
|
*.tsbuildinfo
|
||||||
|
|
||||||
|
# Optional npm cache directory
|
||||||
|
.npm
|
||||||
|
|
||||||
|
# Optional eslint cache
|
||||||
|
.eslintcache
|
||||||
|
|
||||||
|
# Optional stylelint cache
|
||||||
|
.stylelintcache
|
||||||
|
|
||||||
|
# Microbundle cache
|
||||||
|
.rpt2_cache/
|
||||||
|
.rts2_cache_cjs/
|
||||||
|
.rts2_cache_es/
|
||||||
|
.rts2_cache_umd/
|
||||||
|
|
||||||
|
# Optional REPL history
|
||||||
|
.node_repl_history
|
||||||
|
|
||||||
|
# Output of 'npm pack'
|
||||||
|
*.tgz
|
||||||
|
|
||||||
|
# Yarn Integrity file
|
||||||
|
.yarn-integrity
|
||||||
|
|
||||||
|
# dotenv environment variable files
|
||||||
|
.env
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
.env.local
|
||||||
|
|
||||||
|
# parcel-bundler cache (https://parceljs.org/)
|
||||||
|
.cache
|
||||||
|
.parcel-cache
|
||||||
|
|
||||||
|
# Next.js build output
|
||||||
|
.next
|
||||||
|
out
|
||||||
|
|
||||||
|
# Nuxt.js build / generate output
|
||||||
|
.nuxt
|
||||||
|
dist
|
||||||
|
|
||||||
|
# Gatsby files
|
||||||
|
.cache/
|
||||||
|
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||||
|
# https://nextjs.org/blog/next-9-1#public-directory-support
|
||||||
|
# public
|
||||||
|
|
||||||
|
# vuepress build output
|
||||||
|
.vuepress/dist
|
||||||
|
|
||||||
|
# vuepress v2.x temp and cache directory
|
||||||
|
.temp
|
||||||
|
|
||||||
|
# Docusaurus cache and generated files
|
||||||
|
.docusaurus
|
||||||
|
|
||||||
|
# Serverless directories
|
||||||
|
.serverless/
|
||||||
|
|
||||||
|
# FuseBox cache
|
||||||
|
.fusebox/
|
||||||
|
|
||||||
|
# DynamoDB Local files
|
||||||
|
.dynamodb/
|
||||||
|
|
||||||
|
# TernJS port file
|
||||||
|
.tern-port
|
||||||
|
|
||||||
|
# Stores VSCode versions used for testing VSCode extensions
|
||||||
|
.vscode-test
|
||||||
|
|
||||||
|
# yarn v2
|
||||||
|
.yarn/cache
|
||||||
|
.yarn/unplugged
|
||||||
|
.yarn/build-state.yml
|
||||||
|
.yarn/install-state.gz
|
||||||
|
.pnp.*
|
||||||
|
|
||||||
|
### Node Patch ###
|
||||||
|
# Serverless Webpack directories
|
||||||
|
.webpack/
|
||||||
|
|
||||||
|
# Optional stylelint cache
|
||||||
|
|
||||||
|
# SvelteKit build / generate output
|
||||||
|
.svelte-kit
|
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/hextra"]
|
||||||
|
path = themes/hextra
|
||||||
|
url = https://github.com/imfing/hextra.git
|
0
.prettierrc
Normal file
18
README.md
|
@ -1,3 +1,19 @@
|
||||||
# midtowndrafting.com
|
# midtowndrafting.com
|
||||||
|
|
||||||
midtowndrafting.com
|
### Start developing
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://git.myco.systems/mycosystems/web.myco.systems.git
|
||||||
|
```
|
||||||
|
```
|
||||||
|
git submodule update --init --recursive
|
||||||
|
```
|
||||||
|
|
||||||
|
Optionally we recommend installing prettier, the prettierrc file is preconfigured to use the go template plugin.
|
||||||
|
|
||||||
|
```
|
||||||
|
npm install --save-dev prettier prettier-plugin-go-template
|
||||||
|
```
|
||||||
|
|
||||||
|
# License:
|
||||||
|
[MIT](https://git.myco.systems/mycosystems/midtowndrafting.com/src/branch/main/LICENSE)
|
5
archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
+++
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
date = {{ .Date }}
|
||||||
|
draft = true
|
||||||
|
+++
|
65
content/_index.md
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
---
|
||||||
|
title: Midtown Drafting & Design
|
||||||
|
layout: hextra-home
|
||||||
|
---
|
||||||
|
|
||||||
|
{{<hextra/hero-badge link="/docs/hugo">}}
|
||||||
|
<div class="hx-w-2 hx-h-2 hx-rounded-full hx-bg-primary-400"></div>
|
||||||
|
<span>Learn how this site was built</span>
|
||||||
|
{{< icon name="arrow-circle-right" attributes="height=14" >}}
|
||||||
|
{{< /hextra/hero-badge >}}
|
||||||
|
|
||||||
|
<div class="hx-mt-6 hx-mb-6">
|
||||||
|
{{< hextra/hero-headline >}}
|
||||||
|
Midtown Drafting & Design
|
||||||
|
{{< /hextra/hero-headline >}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="hx-mb-12">
|
||||||
|
{{< hextra/hero-subtitle >}}
|
||||||
|
The Drafting & Design pathway provides students with the foundational<br class="sm:hx-block hx-hidden" /> knowledge and skills to succeed in their chosen career.
|
||||||
|
{{< /hextra/hero-subtitle >}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{{< hextra/hero-button text="Read the docs" link="docs" >}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="hx-mt-6"></div>
|
||||||
|
|
||||||
|
{{< hextra/feature-grid >}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Introduction to Drafting and Design"
|
||||||
|
subtitle="The foundational course for the Engineering Drafting and Design pathway"
|
||||||
|
class="hx-aspect-auto md:hx-aspect-[1.1/1] max-md:hx-min-h-[340px]"
|
||||||
|
image="images/idd.webp"
|
||||||
|
link="classes/intro-to-drafting"
|
||||||
|
imageClass="hx-top-[40%] hx-left-[24px] hx-w-[180%] sm:hx-w-[110%] dark:hx-opacity-80 hx-rounded-lg"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(194,97,254,0.15),hsla(0,0%,100%,0));" >}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Survey of Engineering Graphics"
|
||||||
|
subtitle="Surveying the field of engineering graphics with a focus on math and design"
|
||||||
|
class="hx-aspect-auto md:hx-aspect-[1.1/1] max-lg:hx-min-h-[340px]"
|
||||||
|
image="images/seg.webp"
|
||||||
|
link="classes/survey-graphics"
|
||||||
|
imageClass="hx-top-[40%] hx-left-[36px] hx-w-[180%] sm:hx-w-[110%] dark:hx-opacity-80 hx-rounded-lg"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(142,53,74,0.15),hsla(0,0%,100%,0));" >}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="3-D Modeling & Analysis"
|
||||||
|
subtitle="Mastering 3D Modeling and Analysis for Real-World Design Applications"
|
||||||
|
class="hx-aspect-auto md:hx-aspect-[1.1/1] max-lg:hx-min-h-[340px]"
|
||||||
|
image="images/3ma.webp"
|
||||||
|
link="classes/3d-modeling-analysis"
|
||||||
|
imageClass="hx-top-[40%] hx-left-[36px] hx-w-[180%] sm:hx-w-[110%] dark:hx-opacity-80 hx-rounded-lg"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%, rgba(135,206,235,0.2), hsla(0,0%,90%,0));" >}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Safety documentation"
|
||||||
|
icon="information-circle"
|
||||||
|
link="/docs/safety"
|
||||||
|
subtitle="Guidelines for Prototype Room/Drafting Implements & GHS/NFPA safety guidelines">}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="And More..."
|
||||||
|
icon="sparkles"
|
||||||
|
link="/docs/courses"
|
||||||
|
subtitle="Read some of our simple online courses available on the documentation page">}}
|
||||||
|
{{< /hextra/feature-grid >}}
|
BIN
content/about/Toast_GrandPrixFinals_Cynosport_2019.webm
Normal file
BIN
content/about/about-cover.jpg
Normal file
After Width: | Height: | Size: 306 KiB |
18
content/about/index.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
title: Melissa Nunnink
|
||||||
|
toc: false
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< callout type="info" >}}
|
||||||
|
**Hey!** This page is a work in progress. If you'd like to assist in the process of writing sections, take a look at the [git repository](https://git.myco.systems/mycosystems/midtowndrafting.com)
|
||||||
|
{{< /callout >}}
|
||||||
|
|
||||||
|
Melissa Nunnink is an engineering teacher at Midtown who also excels in training her dog for competition. Her experiences have taught her valuable lessons about learning styles and adapting to different situations. Students appreciate her enthusiasm, individualized attention, and high standards.
|
||||||
|
Outside of teaching, Nunnink is involved in extracurricular activities like Ultimate Frisbee and is a role model for her colleagues.
|
||||||
|
|
||||||
|
Read more: [The Southerner Online](https://thesoutherneronline.com/88237/lifestyle/nunnink-balances-teaching-students-training-dogs-2/)
|
||||||
|
|
||||||
|
{{< cards cols="2" >}}
|
||||||
|
{{< card title="Melissa Nunnink, the 2019 southeast regional champion USDAA" image="about-cover.jpg" >}}
|
||||||
|
<a class="hextra-card hx-group hx-flex hx-flex-col hx-justify-start hx-overflow-hidden hx-rounded-lg hx-border hx-border-gray-200 hx-text-current hx-no-underline dark:hx-shadow-none hover:hx-shadow-gray-100 dark:hover:hx-shadow-none hx-shadow-gray-100 active:hx-shadow-sm active:hx-shadow-gray-200 hx-transition-all hx-duration-200 hover:hx-border-gray-300 hx-bg-gray-100 hx-shadow dark:hx-border-neutral-700 dark:hx-bg-neutral-800 dark:hx-text-gray-50 hover:hx-shadow-lg dark:hover:hx-border-neutral-500 dark:hover:hx-bg-neutral-700"><video controls alt="Watch Toast at Cynosport Finals 2019" src="Toast_GrandPrixFinals_Cynosport_2019.webm"></video><span class="hextra-card-icon hx-flex hx-font-semibold hx-items-start hx-gap-2 hx-p-4 hx-text-gray-700 hover:hx-text-gray-900 dark:hx-text-neutral-200 dark:hover:hx-text-neutral-50">Watch Toast at Cynosport Finals 2019</span></a>
|
||||||
|
{{< /cards >}}
|
22
content/classes/3d-modeling-analysis/_index.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
linkTitle: "3-D Modeling & Analysis"
|
||||||
|
title: 3-D Modeling & Analysis
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< hextra/feature-grid style="margin-top:2rem;" cols="2">}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Syllabus"
|
||||||
|
subtitle="Understanding the course outline, objectives, and expectations."
|
||||||
|
icon="external-link"
|
||||||
|
link="https://docs.google.com/document/d/1kKbwxCo9_9Cvo9w4RErARzjXhQXCAZ8P/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(194,97,254,0.15),hsla(0,0%,100%,0));"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Standards"
|
||||||
|
subtitle="Review the state-recognized benchmarks and guidelines that guide our learning."
|
||||||
|
icon="external-link"
|
||||||
|
link="https://drive.google.com/file/d/1kG4XGULB-3zqlsVvuOnuyyKrVmvPqBnR/view?usp=sharing"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(142,53,74,0.15),hsla(0,0%,100%,0));"
|
||||||
|
>}}
|
||||||
|
{{< /hextra/feature-grid >}}
|
6
content/classes/_index.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
linkTitle: "Classes"
|
||||||
|
title: Classes
|
||||||
|
---
|
||||||
|
|
||||||
|
👋 Hello! Pick the title of your class from the left-side menu to access syllabi and standards. Use the search bar if you can't find what you need, but keep in mind that the majority of the content on this website is related to tools within the prototype room, and the `classes` pages will contain external links to more appropriate resources for you or your child's class.
|
22
content/classes/intro-to-drafting/_index.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
linkTitle: "Intro to Drafting & Design"
|
||||||
|
title: Intro to Drafting & Design
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< hextra/feature-grid style="margin-top:2rem;" cols="2">}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Syllabus"
|
||||||
|
subtitle="Understanding the course outline, objectives, and expectations."
|
||||||
|
icon="external-link"
|
||||||
|
link="https://docs.google.com/document/d/1m5dqMdQ1CFUWDsnbSuWmLwgluZdxQ076/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(194,97,254,0.15),hsla(0,0%,100%,0));"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Standards"
|
||||||
|
subtitle="Review the state-recognized benchmarks and guidelines that guide our learning."
|
||||||
|
icon="external-link"
|
||||||
|
link="https://drive.google.com/file/d/15v1tXYWpQ6P5rts0Hf1HvGsMOv-saP4k/view?usp=sharing"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(142,53,74,0.15),hsla(0,0%,100%,0));"
|
||||||
|
>}}
|
||||||
|
{{< /hextra/feature-grid >}}
|
22
content/classes/survey-graphics/_index.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
linkTitle: "Survey of Engineering Graphics"
|
||||||
|
title: Survey of Engineering Graphics
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< hextra/feature-grid style="margin-top:2rem;" cols="2">}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Syllabus"
|
||||||
|
subtitle="Understanding the course outline, objectives, and expectations."
|
||||||
|
icon="external-link"
|
||||||
|
link="https://docs.google.com/document/d/1AO7QDsqlXpwbF9BaIVbBjGFq_nru8RKp/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(194,97,254,0.15),hsla(0,0%,100%,0));"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Standards"
|
||||||
|
subtitle="Review the state-recognized benchmarks and guidelines that guide our learning."
|
||||||
|
icon="external-link"
|
||||||
|
link="https://drive.google.com/file/d/1xHjjU51oG8XHRnjHQUVzDg03JDY4ZaDu/view?usp=sharing"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(142,53,74,0.15),hsla(0,0%,100%,0));"
|
||||||
|
>}}
|
||||||
|
{{< /hextra/feature-grid >}}
|
8
content/docs/_index.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
linkTitle: "Docs"
|
||||||
|
title: Intro
|
||||||
|
---
|
||||||
|
|
||||||
|
Hello, welcome to the documentation for the Midtown Drafting & Design pathway.
|
||||||
|
|
||||||
|
It's sparce right now but we plan to build out this section of the website to contain guides and tasks for learning the tools within the prototype room.
|
13
content/docs/courses/_index.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
title: Courses
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< callout type="info" >}}
|
||||||
|
**Hey!** This page is a work in progress. If you'd like to assist in the process of writing sections, take a look at the [git repository](https://git.myco.systems/mycosystems/midtowndrafting.com)
|
||||||
|
{{< /callout >}}
|
||||||
|
|
||||||
|
This section contains student and alumni-created courses. Being able to teach something you've learned in this pathway is the easiest way to gauge true proficiency.
|
||||||
|
|
||||||
|
There aren't any courses right now, but there is a Linux and Proxmox guide in the works. In the future, we will be adding guides for all the 3D printers and tools in the prototype lab. This includes software like Fusion 360, Blender, Prusa Slicer, and more.
|
||||||
|
|
||||||
|
We hope to have these courses available soon. Please stay tuned!
|
29
content/docs/hugo/_index.md
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
title: Hugo
|
||||||
|
---
|
||||||
|
|
||||||
|
{{< callout type="info" >}}
|
||||||
|
**Hey!** This page is a work in progress. If you'd like to assist in the process of writing sections, take a look at the [git repository](https://git.myco.systems/mycosystems/midtowndrafting.com)
|
||||||
|
{{< /callout >}}
|
||||||
|
|
||||||
|
## What is Hugo?
|
||||||
|
|
||||||
|
[Hugo is a static site generator](https://gohugo.io/); it takes in content in the form of [Markdown](https://www.markdownguide.org/) and uses a pre-configured theme to generate HTML from the markdown files. This makes development very fast and the site very lightweight.
|
||||||
|
|
||||||
|
From scratch, this website can be built in under 100 ms by Hugo, which means it takes seconds to deploy a new version of the website.
|
||||||
|
|
||||||
|
## Why Hugo?
|
||||||
|
|
||||||
|
There are many reasons to use Hugo as a static site generator:
|
||||||
|
|
||||||
|
1. **Fast**: As mentioned previously, Hugo is incredibly fast. It can build a website in a matter of seconds which makes it perfect for rapid development and prototyping.
|
||||||
|
2. **Easy to learn**: Hugo's syntax and configuration are easy to understand and learn, making it accessible even for beginners.
|
||||||
|
3. **Flexible**: You have full control over how your site looks and feels with the ability to customize themes or create new ones. This makes it perfect for developers who want to build unique websites without spending a lot of time on design.
|
||||||
|
4. **Scalable**: With its speed and ease of use, Hugo can handle large websites with hundreds of pages without slowing down.
|
||||||
|
5. **Free and Open Source**: Hugo is completely free to use and open source, so you can customize it however you like or contribute back to the project if you feel inclined.
|
||||||
|
|
||||||
|
## MidtownDrafting.com
|
||||||
|
|
||||||
|
You can find the source for this website here: https://git.myco.systems/mycosystems/midtowndrafting.com
|
||||||
|
|
||||||
|
The entire website is free for anyone to play with, including the theme used called [Hextra](https://github.com/imfing/hextra). Everything is licensed under [MIT](https://mit-license.org/) and no content is witheld with copyright, all content on this website is compatible with CC0 (Public Domain)
|
23
content/docs/safety/_index.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
---
|
||||||
|
title: Safety Guidelines
|
||||||
|
---
|
||||||
|
|
||||||
|
Always remember to respect the equipment in the prototype room and stay out of the designated working areas until you have the proper training.
|
||||||
|
|
||||||
|
{{< hextra/feature-grid style="margin-top:2rem;" cols="2">}}
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="GHS & NFPA"
|
||||||
|
subtitle="**Study guides for NFPA 704** and for the Globally Harmonized System of Classification and Labeling of Chemicals **(GHS)**"
|
||||||
|
icon="external-link"
|
||||||
|
link="https://docs.google.com/document/d/1FTFnjp148WK8-tXOMWp4Hel0lEFglZVskVFJeH27clc/edit"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(194,97,254,0.15),hsla(0,0%,100%,0));"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
{{< hextra/feature-card
|
||||||
|
title="Prototype Room"
|
||||||
|
subtitle="Instructions for safety in the prototype room as well as when using drafting implements"
|
||||||
|
icon="external-link"
|
||||||
|
link="https://docs.google.com/document/d/1ZDB46E8U72bFWoWLfyKD5YMleE3wAJCvnDrYLJMr0l4/edit"
|
||||||
|
style="background: radial-gradient(ellipse at 50% 80%,rgba(142,53,74,0.15),hsla(0,0%,100%,0));"
|
||||||
|
>}}
|
||||||
|
{{< /hextra/feature-grid >}}
|
131
hugo.yaml
Normal file
|
@ -0,0 +1,131 @@
|
||||||
|
baseURL: "https://midtowndrafting.com/"
|
||||||
|
title: "Midtown Drafting & Design"
|
||||||
|
theme: hextra
|
||||||
|
|
||||||
|
enableRobotsTXT: true
|
||||||
|
enableGitInfo: true
|
||||||
|
# enableEmoji: false
|
||||||
|
hasCJKLanguage: true
|
||||||
|
|
||||||
|
# services:
|
||||||
|
# googleAnalytics:
|
||||||
|
# ID: G-MEASUREMENT_ID
|
||||||
|
|
||||||
|
outputs:
|
||||||
|
home: [HTML]
|
||||||
|
page: [HTML]
|
||||||
|
section: [HTML, RSS]
|
||||||
|
|
||||||
|
defaultContentLanguage: en
|
||||||
|
languages:
|
||||||
|
en:
|
||||||
|
languageName: English
|
||||||
|
weight: 1
|
||||||
|
title: Midtown Drafting & Design
|
||||||
|
|
||||||
|
markup:
|
||||||
|
goldmark:
|
||||||
|
renderer:
|
||||||
|
unsafe: true
|
||||||
|
highlight:
|
||||||
|
noClasses: false
|
||||||
|
|
||||||
|
enableInlineShortcodes: true
|
||||||
|
|
||||||
|
menu:
|
||||||
|
main:
|
||||||
|
- identifier: documentation
|
||||||
|
name: Documentation
|
||||||
|
pageRef: /docs
|
||||||
|
weight: 1
|
||||||
|
- identifier: classes
|
||||||
|
name: Classes
|
||||||
|
pageRef: /classes
|
||||||
|
weight: 2
|
||||||
|
- identifier: About
|
||||||
|
weight: 3
|
||||||
|
name: About
|
||||||
|
pageRef: /about
|
||||||
|
- name: Search
|
||||||
|
weight: 4
|
||||||
|
params:
|
||||||
|
type: search
|
||||||
|
# - name: GitHub
|
||||||
|
# weight: 4
|
||||||
|
# url: "https://github.com/imfing/hextra"
|
||||||
|
# params:
|
||||||
|
# icon: github
|
||||||
|
|
||||||
|
params:
|
||||||
|
description: The Drafting & Design pathway provides students with the foundational knowledge and skills to succeed in their chosen career.
|
||||||
|
|
||||||
|
navbar:
|
||||||
|
displayTitle: true
|
||||||
|
displayLogo: true
|
||||||
|
logo:
|
||||||
|
path: images/Black-M.svg
|
||||||
|
dark: images/White-M.svg
|
||||||
|
# width: 40
|
||||||
|
# height: 20
|
||||||
|
# link: /
|
||||||
|
width: wide
|
||||||
|
|
||||||
|
page:
|
||||||
|
# full (100%), wide (90rem), normal (1280px)
|
||||||
|
width: wide
|
||||||
|
|
||||||
|
theme:
|
||||||
|
# light | dark | system
|
||||||
|
default: system
|
||||||
|
displayToggle: true
|
||||||
|
|
||||||
|
footer:
|
||||||
|
enable: true
|
||||||
|
displayCopyright: true
|
||||||
|
displayPoweredBy: true
|
||||||
|
width: wide
|
||||||
|
|
||||||
|
displayUpdatedDate: true
|
||||||
|
dateFormat: "January 2, 2006"
|
||||||
|
|
||||||
|
# Search
|
||||||
|
# flexsearch is enabled by default
|
||||||
|
search:
|
||||||
|
enable: true
|
||||||
|
type: flexsearch
|
||||||
|
|
||||||
|
flexsearch:
|
||||||
|
# index page by: content | summary | heading | title
|
||||||
|
index: content
|
||||||
|
# full | forward | reverse | strict
|
||||||
|
# https://github.com/nextapps-de/flexsearch/#tokenizer-prefix-search
|
||||||
|
tokenize: forward
|
||||||
|
|
||||||
|
editURL:
|
||||||
|
enable: true
|
||||||
|
base: "https://git.myco.systems/mycosystems/midtowndrafting.com/src/branch/feat-hugo/content"
|
||||||
|
|
||||||
|
blog:
|
||||||
|
list:
|
||||||
|
displayTags: true
|
||||||
|
# date | lastmod | publishDate | title | weight
|
||||||
|
sortBy: date
|
||||||
|
sortOrder: desc # or "asc"
|
||||||
|
|
||||||
|
comments:
|
||||||
|
enable: false
|
||||||
|
type: giscus
|
||||||
|
|
||||||
|
# https://giscus.app/
|
||||||
|
giscus:
|
||||||
|
repo: imfing/hextra
|
||||||
|
repoId: R_kgDOJ9fJag
|
||||||
|
category: General
|
||||||
|
categoryId: DIC_kwDOJ9fJas4CY7gW
|
||||||
|
# mapping: pathname
|
||||||
|
# strict: 0
|
||||||
|
# reactionsEnabled: 1
|
||||||
|
# emitMetadata: 0
|
||||||
|
# inputPosition: top
|
||||||
|
# lang: en
|
||||||
|
|
14
i18n/en.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
backToTop: "Scroll to top"
|
||||||
|
changeLanguage: "Change language"
|
||||||
|
changeTheme: "Change theme"
|
||||||
|
copyCode: "Copy code"
|
||||||
|
copyright: "[CC0, no rights reserved](https://creativecommons.org/public-domain/cc0/)"
|
||||||
|
dark: "Dark"
|
||||||
|
editThisPage: "Edit this page on Git →"
|
||||||
|
lastUpdated: "Last updated on"
|
||||||
|
light: "Light"
|
||||||
|
noResultsFound: "No results found."
|
||||||
|
onThisPage: "On this page"
|
||||||
|
poweredBy: "Powered by Hextra"
|
||||||
|
readMore: "Read more →"
|
||||||
|
searchPlaceholder: "Search..."
|
|
@ -1,49 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>3-D Modeling & Analysis</title>
|
|
||||||
<link
|
|
||||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
|
||||||
rel="stylesheet"
|
|
||||||
/>
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
text-align: center;
|
|
||||||
background-color: #222;
|
|
||||||
color: #ddd;
|
|
||||||
font-family: "Open Sans", sans-serif;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #e600008c;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ddd;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #e60000;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="/">back </a>
|
|
||||||
<h1>3-D Modeling & Analysis</h1>
|
|
||||||
<div style="display: flex; flex-direction: column">
|
|
||||||
<a
|
|
||||||
href="https://docs.google.com/document/d/1kKbwxCo9_9Cvo9w4RErARzjXhQXCAZ8P/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true"
|
|
||||||
target="_blank"
|
|
||||||
>Syllabus</a
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
href="https://drive.google.com/file/d/1kG4XGULB-3zqlsVvuOnuyyKrVmvPqBnR/view?usp=sharing"
|
|
||||||
target="_blank"
|
|
||||||
>Standards</a
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Before Width: | Height: | Size: 546 KiB |
|
@ -1,78 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Links to Engineering Graphics Resources</title>
|
|
||||||
<link
|
|
||||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
|
||||||
rel="stylesheet"
|
|
||||||
/>
|
|
||||||
<title>Links to Engineering Graphics Resources</title>
|
|
||||||
<meta
|
|
||||||
name="description"
|
|
||||||
content=" Welcome! This pathway consists of three courses: Introduction to Drafting and Design, Survey of Engineering Graphics, and 3-D Modeling and Analysis. This website hosts standards, syllabi, and links for. all classes taught by Ms. Nunnink. "
|
|
||||||
/>
|
|
||||||
|
|
||||||
<meta property="og:url" content="https://midtowndrafting.com" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta
|
|
||||||
property="og:title"
|
|
||||||
content="Links to Engineering Graphics Resources"
|
|
||||||
/>
|
|
||||||
<meta
|
|
||||||
property="og:description"
|
|
||||||
content=" Welcome! This pathway consists of three courses: Introduction to Drafting and Design, Survey of Engineering Graphics, and 3-D Modeling and Analysis. This website hosts standards, syllabi, and links for. all classes taught by Ms. Nunnink. "
|
|
||||||
/>
|
|
||||||
<meta property="og:image" content="/img/main-min.png" />
|
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
|
||||||
<meta property="twitter:domain" content="midtowndrafting.com" />
|
|
||||||
<meta property="twitter:url" content="https://midtowndrafting.com" />
|
|
||||||
<meta
|
|
||||||
name="twitter:title"
|
|
||||||
content="Links to Engineering Graphics Resources"
|
|
||||||
/>
|
|
||||||
<meta
|
|
||||||
name="twitter:description"
|
|
||||||
content=" Welcome! This pathway consists of three courses: Introduction to Drafting and Design, Survey of Engineering Graphics, and 3-D Modeling and Analysis. This website hosts standards, syllabi, and links for. all classes taught by Ms. Nunnink. "
|
|
||||||
/>
|
|
||||||
<meta name="twitter:image" content="/img/main-min.png" />
|
|
||||||
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
text-align: center;
|
|
||||||
background-color: #222;
|
|
||||||
color: #ddd;
|
|
||||||
font-family: "Open Sans", sans-serif;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #e600008c;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ddd;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #e60000;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Hi! This website is under construction</h1>
|
|
||||||
<h2>In the meantime, you can visit these resources:</h2>
|
|
||||||
<div style="display: flex; flex-direction: column">
|
|
||||||
<a href="/introduction-to-drafting-design"
|
|
||||||
>Introduction to Drafting & Design</a
|
|
||||||
>
|
|
||||||
<a href="/survey-of-engineering-graphics"
|
|
||||||
>Survey of Engineering Graphics</a
|
|
||||||
>
|
|
||||||
<a href="/3d-modeling-analysis">3-D Modeling & Analysis</a>
|
|
||||||
<a href="/safety-docs">Safety Docs</a>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,49 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Introduction to Drafting & Design</title>
|
|
||||||
<link
|
|
||||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
|
||||||
rel="stylesheet"
|
|
||||||
/>
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
text-align: center;
|
|
||||||
background-color: #222;
|
|
||||||
color: #ddd;
|
|
||||||
font-family: "Open Sans", sans-serif;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #e600008c;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ddd;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #e60000;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="/">back </a>
|
|
||||||
<h1>Introduction to Drafting & Design</h1>
|
|
||||||
<div style="display: flex; flex-direction: column">
|
|
||||||
<a
|
|
||||||
href="https://docs.google.com/document/d/1m5dqMdQ1CFUWDsnbSuWmLwgluZdxQ076/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true"
|
|
||||||
target="_blank"
|
|
||||||
>Syllabus</a
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
href="https://drive.google.com/file/d/15v1tXYWpQ6P5rts0Hf1HvGsMOv-saP4k/view?usp=sharing"
|
|
||||||
target="_blank"
|
|
||||||
>Standards</a
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,49 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Safety in the lab, getting started is easy</title>
|
|
||||||
<link
|
|
||||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
|
||||||
rel="stylesheet"
|
|
||||||
/>
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
text-align: center;
|
|
||||||
background-color: #222;
|
|
||||||
color: #ddd;
|
|
||||||
font-family: "Open Sans", sans-serif;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #e600008c;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ddd;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #e60000;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="/">back </a>
|
|
||||||
<h1>Safety in the lab</h1>
|
|
||||||
<div style="display: flex; flex-direction: column">
|
|
||||||
<a
|
|
||||||
href="https://docs.google.com/document/d/1FTFnjp148WK8-tXOMWp4Hel0lEFglZVskVFJeH27clc/edit?usp=sharing"
|
|
||||||
target="_blank"
|
|
||||||
>GHS and NFPA 704 Safety Guidelines
|
|
||||||
</a>
|
|
||||||
<a
|
|
||||||
href="https://docs.google.com/document/d/1ZDB46E8U72bFWoWLfyKD5YMleE3wAJCvnDrYLJMr0l4/edit?usp=sharing"
|
|
||||||
target="_blank"
|
|
||||||
>Guidelines for Prototype Room/Drafting Implements
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,49 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Survey of Engineering Graphics</title>
|
|
||||||
<link
|
|
||||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
|
||||||
rel="stylesheet"
|
|
||||||
/>
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
text-align: center;
|
|
||||||
background-color: #222;
|
|
||||||
color: #ddd;
|
|
||||||
font-family: "Open Sans", sans-serif;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #e600008c;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 10px;
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ddd;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #e60000;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a href="/">back </a>
|
|
||||||
<h1>Survey of Engineering Graphics</h1>
|
|
||||||
<div style="display: flex; flex-direction: column">
|
|
||||||
<a
|
|
||||||
href="https://docs.google.com/document/d/1AO7QDsqlXpwbF9BaIVbBjGFq_nru8RKp/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true"
|
|
||||||
target="_blank"
|
|
||||||
>Syllabus</a
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
href="https://drive.google.com/file/d/1xHjjU51oG8XHRnjHQUVzDg03JDY4ZaDu/view?usp=sharing"
|
|
||||||
target="_blank"
|
|
||||||
>Standards</a
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
BIN
static/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
static/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
static/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 8 KiB |
BIN
static/favicon-16x16.png
Normal file
After Width: | Height: | Size: 522 B |
BIN
static/favicon-32x32.png
Normal file
After Width: | Height: | Size: 967 B |
18
static/favicon-dark.svg
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||||
|
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||||
|
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="495.000000pt" height="478.000000pt" viewBox="0 0 495.000000 478.000000"
|
||||||
|
preserveAspectRatio="xMidYMid meet">
|
||||||
|
|
||||||
|
<g transform="translate(0.000000,478.000000) scale(0.100000,-0.100000)"
|
||||||
|
fill="#FFF" stroke="none">
|
||||||
|
<path d="M0 2789 l0 -1997 401 -393 c221 -217 407 -395 415 -397 12 -3 14 101
|
||||||
|
15 695 1 384 5 1010 8 1390 l6 693 515 -510 515 -510 -278 -274 -277 -275 2
|
||||||
|
-582 3 -583 569 560 c313 307 572 560 576 562 5 2 263 -248 575 -555 311 -307
|
||||||
|
571 -560 576 -561 5 -2 9 221 9 576 l0 579 -280 276 -279 277 317 312 c174
|
||||||
|
172 408 403 520 512 l202 200 0 -1392 c0 -1319 1 -1392 18 -1391 9 0 198 179
|
||||||
|
420 397 l402 397 -2 1989 -3 1990 -1206 -1185 c-663 -651 -1220 -1197 -1237
|
||||||
|
-1213 l-31 -29 -998 983 c-549 541 -1105 1089 -1235 1219 l-238 236 0 -1996z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 961 B |
BIN
static/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
18
static/favicon.svg
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||||
|
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||||
|
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="495.000000pt" height="478.000000pt" viewBox="0 0 495.000000 478.000000"
|
||||||
|
preserveAspectRatio="xMidYMid meet">
|
||||||
|
|
||||||
|
<g transform="translate(0.000000,478.000000) scale(0.100000,-0.100000)"
|
||||||
|
fill="#000000" stroke="none">
|
||||||
|
<path d="M0 2789 l0 -1997 401 -393 c221 -217 407 -395 415 -397 12 -3 14 101
|
||||||
|
15 695 1 384 5 1010 8 1390 l6 693 515 -510 515 -510 -278 -274 -277 -275 2
|
||||||
|
-582 3 -583 569 560 c313 307 572 560 576 562 5 2 263 -248 575 -555 311 -307
|
||||||
|
571 -560 576 -561 5 -2 9 221 9 576 l0 579 -280 276 -279 277 317 312 c174
|
||||||
|
172 408 403 520 512 l202 200 0 -1392 c0 -1319 1 -1392 18 -1391 9 0 198 179
|
||||||
|
420 397 l402 397 -2 1989 -3 1990 -1206 -1185 c-663 -651 -1220 -1197 -1237
|
||||||
|
-1213 l-31 -29 -998 983 c-549 541 -1105 1089 -1235 1219 l-238 236 0 -1996z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 964 B |
BIN
static/images/3ma.webp
Normal file
After Width: | Height: | Size: 34 KiB |
18
static/images/Black-M.svg
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||||
|
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||||
|
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="495.000000pt" height="478.000000pt" viewBox="0 0 495.000000 478.000000"
|
||||||
|
preserveAspectRatio="xMidYMid meet">
|
||||||
|
|
||||||
|
<g transform="translate(0.000000,478.000000) scale(0.100000,-0.100000)"
|
||||||
|
fill="#000000" stroke="none">
|
||||||
|
<path d="M0 2789 l0 -1997 401 -393 c221 -217 407 -395 415 -397 12 -3 14 101
|
||||||
|
15 695 1 384 5 1010 8 1390 l6 693 515 -510 515 -510 -278 -274 -277 -275 2
|
||||||
|
-582 3 -583 569 560 c313 307 572 560 576 562 5 2 263 -248 575 -555 311 -307
|
||||||
|
571 -560 576 -561 5 -2 9 221 9 576 l0 579 -280 276 -279 277 317 312 c174
|
||||||
|
172 408 403 520 512 l202 200 0 -1392 c0 -1319 1 -1392 18 -1391 9 0 198 179
|
||||||
|
420 397 l402 397 -2 1989 -3 1990 -1206 -1185 c-663 -651 -1220 -1197 -1237
|
||||||
|
-1213 l-31 -29 -998 983 c-549 541 -1105 1089 -1235 1219 l-238 236 0 -1996z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 964 B |
18
static/images/White-M.svg
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||||
|
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||||
|
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="495.000000pt" height="478.000000pt" viewBox="0 0 495.000000 478.000000"
|
||||||
|
preserveAspectRatio="xMidYMid meet">
|
||||||
|
|
||||||
|
<g transform="translate(0.000000,478.000000) scale(0.100000,-0.100000)"
|
||||||
|
fill="#FFF" stroke="none">
|
||||||
|
<path d="M0 2789 l0 -1997 401 -393 c221 -217 407 -395 415 -397 12 -3 14 101
|
||||||
|
15 695 1 384 5 1010 8 1390 l6 693 515 -510 515 -510 -278 -274 -277 -275 2
|
||||||
|
-582 3 -583 569 560 c313 307 572 560 576 562 5 2 263 -248 575 -555 311 -307
|
||||||
|
571 -560 576 -561 5 -2 9 221 9 576 l0 579 -280 276 -279 277 317 312 c174
|
||||||
|
172 408 403 520 512 l202 200 0 -1392 c0 -1319 1 -1392 18 -1391 9 0 198 179
|
||||||
|
420 397 l402 397 -2 1989 -3 1990 -1206 -1185 c-663 -651 -1220 -1197 -1237
|
||||||
|
-1213 l-31 -29 -998 983 c-549 541 -1105 1089 -1235 1219 l-238 236 0 -1996z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 961 B |
BIN
static/images/idd.webp
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
static/images/seg.webp
Normal file
After Width: | Height: | Size: 401 KiB |
1
static/site.webmanifest
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
1
themes/hextra
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit ba7707d4d9f922ea82a9645af150a6216d343669
|