Skip to content

Commit 6865872

Browse files
authored
Redesign of site (#284)
After 7 years - it's time to do a update of site (design and internals). Some organization was dropped due lack of logotypes available on their sites (logotypes are not stored on the site itself).
1 parent 68db238 commit 6865872

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+13242
-1520
lines changed

.babelrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.editorconfig

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/pages.yml

Lines changed: 18 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,35 @@
1-
# Simple workflow for deploying static content to GitHub Pages
2-
name: Deploy static content to Pages
1+
name: Deploy
32

43
on:
5-
# Runs on pushes targeting the default branch
4+
# Trigger the workflow every time you push to the `main` branch
5+
# Using a different branch name? Replace `main` with your branch’s name
66
push:
7-
branches: ["master"]
8-
9-
# Allows you to run this workflow manually from the Actions tab
7+
branches: [ master ]
8+
# Allows you to run this workflow manually from the Actions tab on GitHub.
109
workflow_dispatch:
11-
12-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
10+
11+
# Allow this job to clone the repo and create a page deployment
1312
permissions:
1413
contents: read
1514
pages: write
1615
id-token: write
1716

18-
# Allow one concurrent deployment
19-
concurrency:
20-
group: "pages"
21-
cancel-in-progress: true
22-
2317
jobs:
24-
# Single deploy job since we're just deploying
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout your repository using git
22+
uses: actions/checkout@v2
23+
- name: Install, build, and upload your site
24+
uses: withastro/action@v0
25+
2526
deploy:
27+
needs: build
28+
runs-on: ubuntu-latest
2629
environment:
2730
name: github-pages
2831
url: ${{ steps.deployment.outputs.page_url }}
29-
runs-on: ubuntu-latest
3032
steps:
31-
- name: Checkout
32-
uses: actions/checkout@v3
33-
- name: Install and Build
34-
run: |
35-
npm install
36-
npm run build
37-
- name: Setup Pages
38-
uses: actions/configure-pages@v2
39-
- name: Upload artifact
40-
uses: actions/upload-pages-artifact@v1
41-
with:
42-
# Upload entire repository
43-
path: 'public'
4433
- name: Deploy to GitHub Pages
4534
id: deployment
46-
uses: actions/deploy-pages@v1
35+
uses: actions/deploy-pages@v1

.gitignore

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
1-
node_modules
1+
# build output
2+
dist/
3+
.output/
4+
5+
# dependencies
6+
node_modules/
7+
8+
# logs
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
pnpm-debug.log*
13+
14+
15+
# environment variables
16+
.env
17+
.env.production
18+
19+
# macOS-specific files
220
.DS_Store
3-
npm-debug.log
4-
public
5-
.idea

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Expose Astro dependencies for `pnpm` users
2+
shamefully-hoist=true

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"files.associations": {
3+
"*.mdx": "markdown"
4+
}
5+
}

LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)