Skip to content

Commit

Permalink
Merge pull request #76 from InnerSourceCommons/adding-resource
Browse files Browse the repository at this point in the history
Adding resource
  • Loading branch information
yuhattor authored Aug 5, 2024
2 parents 012b7ad + 5b8704e commit 362568e
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@
*/public
public/*
!public/index.html

!landing-page/content/**/resources
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ When running locally, for example, debugging while running the Tokyo Gathering p

```sh
cd tokyo-2024
npm insatall
npm install
npm start
```

Expand Down
4 changes: 1 addition & 3 deletions landing-page/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
.hugo_build.lock
**/static/images/.DS_Store
**/static/.DS_Store
**/resources

./resources
# Ignore public directory
*/public
public/*
!public/index.html


node_modules
7 changes: 7 additions & 0 deletions landing-page/content/en/resources/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Resources"
date: 2024-01-10T13:51:25+06:00
draft: false
description: "InnerSource Gathering Resources"
bg_image: "images/gathering-images/gathering-2-dark.jpg"
---
6 changes: 6 additions & 0 deletions landing-page/content/en/resources/innersource-man.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "InnerSource Man Song"
url: "/resources/innersource-man"
type: redirects
redirect: "https://youtu.be/kkxRvNP31K8"
---
6 changes: 6 additions & 0 deletions landing-page/content/en/resources/whats-innersource-jp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "What's Innersource [日本語字幕]"
url: "/resources/whats-innersource-jp"
type: redirects
redirect: "https://youtu.be/kkxRvNP31K8"
---
8 changes: 8 additions & 0 deletions themes/gathering-theme/layouts/redirects/single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<head>
<meta http-equiv="refresh" content="1;URL={{ .Params.redirect }}" />
</head>
<body>
<script type="text/javascript">
window.location.href = "{{ .Params.redirect }}";
</script>
</body>

0 comments on commit 362568e

Please sign in to comment.