Skip to content

Commit a770ddd

Browse files
committed
placeholder
1 parent 60ebd08 commit a770ddd

File tree

9 files changed

+95
-2
lines changed

9 files changed

+95
-2
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: xan105
2+
custom: https://www.paypal.me/xan105

.github/workflows/web-publish.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: web-publish
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- 'main'
7+
- 'master'
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
concurrency:
15+
group: "pages"
16+
cancel-in-progress: true
17+
18+
jobs:
19+
deploy:
20+
environment:
21+
name: github-pages
22+
url: ${{ steps.deployment.outputs.page_url }}
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v3
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v1
29+
- name: Upload artifact
30+
uses: actions/upload-pages-artifact@v1
31+
with:
32+
path: 'www/'
33+
- name: Deploy to GitHub Pages
34+
id: deployment
35+
uses: actions/deploy-pages@v1

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# website
2-
Openachievement website
1+
Openachievement website.

www/index.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="author" content="Anthony Beaumont">
6+
<meta http-equiv="Content-Security-Policy" content="
7+
default-src 'self';
8+
style-src 'self';
9+
connect-src 'self';
10+
">
11+
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
12+
<title>Open Achievement</title>
13+
<meta name="description" content="Preserving and sharing game achievements."/>
14+
<meta property="og:title" content="Open Achievement"/>
15+
<meta property="og:description" content="Preserving and sharing game achievements."/>
16+
<meta property="og:image" content="https://openachievement.org/resources/icon/icon.png"/>
17+
<meta property="og:url" content="https://openachievement.org.com"/>
18+
<meta property="og:type" content="website"/>
19+
<link rel="shortcut icon" href="/resources/icon/icon.ico"/>
20+
<link rel="stylesheet" type="text/css" href="/resources/style/style.css"/>
21+
</head>
22+
<body>
23+
<main>
24+
<p>Coming soon, stay tuned!</p>
25+
</main>
26+
</body>
27+
</html>

www/resources/icon/icon.ico

51.1 KB
Binary file not shown.

www/resources/icon/icon.png

64.3 KB
Loading

www/resources/style/style.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
body {
2+
background-color: #1b2838;
3+
}
4+
5+
main {
6+
display: flex;
7+
}
8+
9+
main p {
10+
color: white;
11+
margin: auto;
12+
padding: 50px 100px;
13+
font-weight: bold;
14+
font-size: 22px;
15+
}

www/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Disallow:
3+
4+
Sitemap: https://openachievement.org/sitemap.xml

www/sitemap.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
5+
<url>
6+
<loc>https://openachievement.org</loc>
7+
</url>
8+
<url>
9+
<loc>https://openachievement.org/index.html</loc>
10+
</url>
11+
</urlset>

0 commit comments

Comments
 (0)