Commit 7249522d authored by Jay Laura's avatar Jay Laura
Browse files

Initial commit with reformatted site

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+16 −0
Original line number Diff line number Diff line
# 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 Dependencies
node_modules/

.gitlab-ci.yml

0 → 100644
+20 −0
Original line number Diff line number Diff line
stages:
  - build
  - deploy

build:
  stage: build
  image: registry.gitlab.com/pages/hugo:latest
  script:
      - hugo --baseURL=https://asc-docs.s3-website-us-west-2.amazonaws.com/foundationaldataproducts
  artifacts:
    paths:
      - public

deploy:
  stage: deploy
  image: xueshanf/awscli:latest
  only: 
    - main
  script:
      - aws s3 sync public s3://asc-docs/foundationaldataproducts

.pyspelling.yml

0 → 100644
+32 −0
Original line number Diff line number Diff line
spellchecker: hunspell
matrix:
- name: Markdown
  sources:
  - './content/**/*.md'
  default_encoding: utf-8
  hunspell:
    lang: en
  dictionary:
    wordlists:
    - wordlist.txt
    encoding: utf-8
  pipeline:
  - pyspelling.filters.markdown:
  - pyspelling.filters.html:
      comments: false
      ignores:
      - code
      - pre
  - pyspelling.filters.context:
      context_visible_first: true
      delimiters:
      # Ignore multiline content between fences (fences can have 3 or more back ticks)
      # ```
      # content
      # ```
      - open: '(?s)^(?P<open> *`{3,})$'
        close: '^(?P=open)$'
      # Ignore text between inline back ticks
      - open: '(?P<open>`+)'
        close: '(?P=open)'
 No newline at end of file

archetypes/default.md

0 → 100644
+6 −0
Original line number Diff line number Diff line
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

build/.htaccess

0 → 100644
+16 −0
Original line number Diff line number Diff line
ErrorDocument 404 /404.html

ExpiresActive On
ExpiresDefault "access plus 600 seconds"
ExpiresByType text/css "access plus 1 week"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/html "access plus 1 seconds"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType application/x-javascript "access plus 1 month"
ExpiresByType image/gif "access plus 1 week"
ExpiresByType image/jpeg "access plus 1 week"
ExpiresByType image/png "access plus 1 week"
ExpiresByType image/x-icon "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 week"
ExpiresByType application/x-font-woff "access plus 1 week"
ExpiresByType application/font-woff2 "access plus 1 week"