Compare commits
2 Commits
d8da2a8010
...
125601885d
Author | SHA1 | Date | |
---|---|---|---|
|
125601885d | ||
|
52b1983d1d |
@ -1,8 +1,13 @@
|
|||||||
|
# Move / rename the content files into the 'public' folder for GitLab Pages
|
||||||
|
# Artifacts contents of 'public' for Pages
|
||||||
|
# Deploy pages publicly in GitLab
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
- echo "hi"
|
- mv assets public/assets
|
||||||
|
- mv main.css public/main.css
|
||||||
|
- mv lightbox-demo.html public/index.html
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 176 KiB After Width: | Height: | Size: 176 KiB |
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@ -1,12 +1,21 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Document</title>
|
<title>Document</title>
|
||||||
|
<link rel="stylesheet" href="remus.min.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<div class="juxtapose" data-animate="true">
|
||||||
|
<img src="./actual-screenshot1.jpg" alt="" data-label="2019">
|
||||||
|
<img src="./poc-screenshot1.jpg" alt="" data-label="poc">
|
||||||
|
</div>
|
||||||
|
<script src="https://cdn.knightlab.com/libs/juxtapose/latest/js/juxtapose.min.js"></script>
|
||||||
|
<link rel="stylesheet" href="https://cdn.knightlab.com/libs/juxtapose/latest/css/juxtapose.css">
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|