mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-26 04:48:34 +01:00
Compare commits
2 commits
c6f2b0e012
...
37f93b2a30
Author | SHA1 | Date | |
---|---|---|---|
37f93b2a30 | |||
fdf6d55414 |
2 changed files with 5 additions and 6 deletions
|
@ -1,5 +0,0 @@
|
||||||
![](media/news/outright.png)
|
|
||||||
|
|
||||||
For Pride Month and until **the end of August**, we're partnering with Outright for their [Family Pride](https://outrightinternational.org/familypride) event. By donating to our campaign, you also help more **fun queer content** make its way into the game!
|
|
||||||
|
|
||||||
→ **[See Rewards and Donate](https://outrightinternational.donorsupport.co/page/TinyLifeOutrightPride2024)** ←
|
|
|
@ -2,8 +2,12 @@
|
||||||
FileUtils.cp '../InGameNews.md', '_includes/__news.md'
|
FileUtils.cp '../InGameNews.md', '_includes/__news.md'
|
||||||
FileUtils.cp '../Changelog.md', '_includes/__changelog.md'
|
FileUtils.cp '../Changelog.md', '_includes/__changelog.md'
|
||||||
|
|
||||||
# after the site is generated, copy changelog and news media into it
|
|
||||||
Jekyll::Hooks.register :site, :post_write do
|
Jekyll::Hooks.register :site, :post_write do
|
||||||
|
# after the site is generated, copy changelog and news media into it
|
||||||
FileUtils.cp_r "../media/news", "_site/media"
|
FileUtils.cp_r "../media/news", "_site/media"
|
||||||
FileUtils.cp_r "../media/changelog", "_site/media"
|
FileUtils.cp_r "../media/changelog", "_site/media"
|
||||||
|
|
||||||
|
# also copy the raw markdown files for the in-game changelog/news viewers
|
||||||
|
FileUtils.cp_r "_includes/__news.md", "_site/ingamenews/raw.md"
|
||||||
|
FileUtils.cp_r "_includes/__changelog.md", "_site/changelog/raw.md"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue