-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8231a6a
commit af97fde
Showing
46 changed files
with
906 additions
and
887 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: go-test | ||
on: [push] | ||
on: [ push ] | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite App</title> | ||
</head> | ||
<body> | ||
<!-- This file contains no purpose in the actual application. It is only used by Vite to compile JS --> | ||
<div id="app"></div> | ||
<script type="module" src="/main.js"></script> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
<title>Vite App</title> | ||
</head> | ||
<body> | ||
<!-- This file contains no purpose in the actual application. It is only used by Vite to compile JS --> | ||
<div id="app"></div> | ||
<script type="module" src="/main.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export function codeHighlighter() { | ||
window.addEventListener('DOMContentLoaded', (event) => { | ||
console.log('DOM fully loaded and parsed'); | ||
}); | ||
window.addEventListener('DOMContentLoaded', (event) => { | ||
console.log('DOM fully loaded and parsed'); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
import dayjs from 'dayjs/esm/index' | ||
// const dayjs = require('dayjs') | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
let scrollToTopBtn = document.getElementById("btn-scroll-to-top"); | ||
let fourViewports = window.innerHeight * 4; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{{define "content"}} | ||
<div class="row"> | ||
{{ include "partials/cookbook/header" }} | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-8"> | ||
{{include "partials/cookbook_readme"}} | ||
</div> | ||
<div class="col-lg-4 border-start"> | ||
{{include "partials/cookbook_metadata"}} | ||
</div> | ||
</div> | ||
{{end}} | ||
{{define "active_tab" }}overview{{end}} | ||
{{ define "content"}} | ||
<div class="row"> | ||
{{ include "partials/cookbook/header" }} | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-8"> | ||
{{ include "partials/cookbook_readme"}} | ||
</div> | ||
<div class="col-lg-4 border-start"> | ||
{{ include "partials/cookbook_metadata"}} | ||
</div> | ||
</div> | ||
{{ end }} | ||
{{ define "active_tab" }}overview{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{{define "content"}} | ||
<div class="row"> | ||
{{ include "partials/cookbook/header" }} | ||
</div> | ||
<div class="row"> | ||
<div class="col"> | ||
<h3>{{.path}}</h3> | ||
<div id="cookbook-file"> | ||
<pre><code>{{ .file }}</code></pre> | ||
</div> | ||
<script> | ||
document.addEventListener('DOMContentLoaded', () => { | ||
hljs.highlightAll() | ||
hljs.initLineNumbersOnLoad() | ||
}) | ||
</script> | ||
</div> | ||
</div> | ||
{{end}} | ||
{{define "active_tab" }}files{{end}} | ||
{{ define "content"}} | ||
<div class="row"> | ||
{{ include "partials/cookbook/header" }} | ||
</div> | ||
<div class="row"> | ||
<div class="col"> | ||
<h3>{{.path}}</h3> | ||
<div id="cookbook-file"> | ||
<pre><code>{{ .file }}</code></pre> | ||
</div> | ||
<script> | ||
document.addEventListener('DOMContentLoaded', () => { | ||
hljs.highlightAll() | ||
hljs.initLineNumbersOnLoad() | ||
}) | ||
</script> | ||
</div> | ||
</div> | ||
{{ end }} | ||
{{ define "active_tab" }}files{{ end }} |
Oops, something went wrong.