-
-
Notifications
You must be signed in to change notification settings - Fork 461
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update outdated Actions and syntax for variable definition
- Loading branch information
1 parent
ea69257
commit 40956fd
Showing
2 changed files
with
37 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
<!-- RSS parameters --> | ||
@def generate_rss = true | ||
@def website_title = "JuliaLang - The Julia programming language" | ||
@def website_descr = "Official website for the Julia programming language." | ||
@def website_url = get(ENV, "JULIA_FRANKLIN_WEBSITE_URL", "https://julialang.org/") | ||
@def prepath = get(ENV, "JULIA_FRANKLIN_PREPATH", "") | ||
+++ | ||
# RSS parameters | ||
generate_rss = true | ||
website_title = "JuliaLang - The Julia programming language" | ||
website_descr = "Official website for the Julia programming language." | ||
website_url = get(ENV, "JULIA_FRANKLIN_WEBSITE_URL", "https://julialang.org/") | ||
prepath = get(ENV, "JULIA_FRANKLIN_PREPATH", "") | ||
|
||
<!-- NOTE: don't change what's below --> | ||
@def div_content = "container main" <!-- instead of franklin-content --> | ||
@def author = "" | ||
# NOTE: don't change what's below | ||
div_content = "container main" # instead of franklin-content | ||
author = "" | ||
|
||
<!-- Templating of the Downloads --> | ||
<!-- | ||
NOTE: When updating for a new release, make sure to also rerun | ||
`downloads/oldreleases.jl` | ||
--> | ||
@def stable_release = "1.8.3" | ||
@def stable_release_short = "1.8" | ||
@def stable_release_date = "November 14, 2022" | ||
@def lts_release = "1.6.7" | ||
@def lts_release_short = "1.6" | ||
@def lts_release_date = "July 19, 2022" | ||
# Templating of the Downloads | ||
# NOTE: When updating for a new release, make sure to also rerun | ||
# `downloads/oldreleases.jl` | ||
stable_release = "1.8.3" | ||
stable_release_short = "1.8" | ||
stable_release_date = "November 14, 2022" | ||
lts_release = "1.6.7" | ||
lts_release_short = "1.6" | ||
lts_release_date = "July 19, 2022" | ||
|
||
<!-- plotly --> | ||
@def hasplotly = false | ||
# plotly | ||
hasplotly = false | ||
|
||
<!-- | ||
If the following lines are commented, the "upcoming release" section | ||
in `downloads/index.md` will not be shown. | ||
--> | ||
@def upcoming_release = "1.9.0-alpha1" | ||
@def upcoming_release_short = "1.9" | ||
@def upcoming_release_date = "November 15, 2022" | ||
# If the following lines are commented, the "upcoming release" section | ||
# in `downloads/index.md` will not be shown. | ||
upcoming_release = "1.9.0-alpha1" | ||
upcoming_release_short = "1.9" | ||
upcoming_release_date = "November 15, 2022" | ||
+++ |