Skip to content

Commit 39d8533

Browse files
Merge pull request #778 from harys722/master
Website
2 parents a123ded + 14c4cec commit 39d8533

4 files changed

Lines changed: 110 additions & 0 deletions

File tree

.github/workflows/website.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Website
2+
3+
on:
4+
push:
5+
branches: [master]
6+
paths:
7+
- "website/**"
8+
- ".github/workflows/website.yml"
9+
10+
workflow_dispatch:
11+
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
concurrency:
18+
group: "pages"
19+
cancel-in-progress: false
20+
21+
jobs:
22+
build:
23+
name: Build
24+
runs-on: ubuntu-latest
25+
26+
steps:
27+
- uses: actions/checkout@v4
28+
29+
- uses: actions/configure-pages@v4
30+
31+
- name: Build with Jeykll
32+
uses: actions/jekyll-build-pages@v1
33+
with:
34+
source: ./website
35+
destination: ./_site
36+
37+
- name: Upload Artifact
38+
uses: actions/upload-pages-artifact@v3
39+
40+
deploy:
41+
name: Deploy
42+
runs-on: ubuntu-latest
43+
needs: build
44+
45+
environment:
46+
name: github-pages
47+
url: ${{ steps.deployment.outputs.page_url }}
48+
49+
steps:
50+
- name: Deploy to GitHub Pages
51+
id: deployment
52+
uses: actions/deploy-pages@v4

website/favicon.ico

26.5 KB
Binary file not shown.

website/index.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
5+
<meta name="viewport" content="width=device-width,initial-scale=1">
6+
<meta charset="UTF-8">
7+
8+
<!-- HTML Meta Tags -->
9+
<title>Badges 4 README Profile</title>
10+
<meta name="description" content="Improve your README.md profile with these amazing badges.">
11+
12+
<!-- Google / Search Engine Tags -->
13+
<meta itemprop="name" content="Badges 4 README Profile">
14+
<meta itemprop="description" content="Improve your README.md profile with these amazing badges.">
15+
<meta itemprop="image" content="https://alexandresanlim.github.io/Badges4-README.md-Profile/media/cover.png">
16+
17+
<!-- Facebook Meta Tags -->
18+
<meta property="og:url" content="https://alexandresanlim.github.io/Badges4-README.md-Profile/">
19+
<meta property="og:type" content="website">
20+
<meta property="og:title" content="Badges 4 README Profile">
21+
<meta property="og:description" content="Improve your README.md profile with these amazing badges.">
22+
<meta property="og:image" content="https://alexandresanlim.github.io/Badges4-README.md-Profile/media/cover.png">
23+
24+
<!-- Twitter Meta Tags -->
25+
<meta name="twitter:card" content="summary_large_image">
26+
<meta name="twitter:title" content="Badges 4 README Profile">
27+
<meta name="twitter:description" content="Improve your README.md profile with these amazing badges.">
28+
<meta name="twitter:image" content="https://alexandresanlim.github.io/Badges4-README.md-Profile/media/cover.png">
29+
30+
<!-- Favicon -->
31+
<link rel="shortcut icon" href="favicon.ico">
32+
33+
<!-- Stylesheets -->
34+
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="//cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
35+
<link rel="stylesheet" media="(prefers-color-scheme: light)" href="//cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
36+
</head>
37+
38+
<body>
39+
<noscript>This page requires JavaScript to work, please enable it or read the list <a href="https://github.com/alexandresanlim/Badges4-README.md-Profile#readme">here</a>.</noscript>
40+
41+
<div id="app">Loading...</div>
42+
43+
<script>
44+
window.$docsify = {
45+
name: "Badges 4 README Profile",
46+
repo: "alexandresanlim/Badges4-README.md-Profile",
47+
search: ["/"],
48+
alias: {
49+
"/": "https://raw.githubusercontent.com/alexandresanlim/Badges4-README.md-Profile/master/README.md"
50+
}
51+
}
52+
</script>
53+
54+
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
55+
<script src="//cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script>
56+
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
57+
</body>
58+
</html>

website/media/cover.png

96.7 KB
Loading

0 commit comments

Comments
 (0)