Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
u9235044 committed Jul 8, 2024
2 parents 1678115 + 832f0cc commit 97c6254
Show file tree
Hide file tree
Showing 2 changed files with 126 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
75 changes: 75 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test</title>
<style>
/* test source control */
/* 將畫面分成左右兩半 */
.split {
height: 100%;
width: 70%;
position: fixed;
z-index: 1;
top: 0;
overflow-x: hidden;
padding-top: 20px;
}

/* 左半邊 */
.left {
left: 0;
background-color: #fff;
}

/* 右半邊 */
.right {
right: 0;
background-color: #f2f2f2;
}

/* 畫直線 */
.vertical-line {
border-left: 6px solid #333;
height: 100%;
position: absolute;
top: 0;
left: 30%;
margin-left: -3px;
z-index: 1;
}

/* 調整內容的位置 */
.content {
margin-top: 50px;
margin-left: 20px;
margin-right: 20px;
}

iframe {
border: none;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}

</style>
</head>
<body>
<div class="split left">
<div class="content">
左半邊
</div>
</div>
<div class="split right">
<div class="content">
<iframe src="https://docs.google.com/document/d/e/2PACX-1vTs5_5AJ5tY3gNgEFyCa93-1EZFEBaM-y0zeV6rskKGLpY_m07x1mr1b5yCkJvdDsOcdHxE8iQr7mxU/pub?embedded=true">
</iframe>

</div>
</div>
<div class="vertical-line"></div>

</body>
</html>

0 comments on commit 97c6254

Please sign in to comment.