diff --git a/src/helpers/constants.py b/src/helpers/constants.py index ccedacde..ffb23040 100644 --- a/src/helpers/constants.py +++ b/src/helpers/constants.py @@ -153,7 +153,7 @@ def _missing_(cls, value): } ORG_TO_LOGO = { - BENCHMARK_NAME: "fri.png", + BENCHMARK_NAME: "fri.svg", ANTHROPIC_ORG: "anthropic.svg", DEEPSEEK_ORG: "deepseek.svg", MOONSHOT_ORG: "moonshot.svg", diff --git a/src/leaderboard/main.py b/src/leaderboard/main.py index 5938704f..a0f05a87 100644 --- a/src/leaderboard/main.py +++ b/src/leaderboard/main.py @@ -1292,7 +1292,7 @@ def write_leaderboard_js_file_full( search: { regex: true, smart: true }, createdRow: function(row, data, dataIndex) { if ({{ model_highlight_rows | tojson }}.includes(data.Model)) { - $(row).css('background-color', '#fdece8'); + $(row).css('background-color', '#fef0e6'); } }, infoCallback: function(settings, start, end, max, total, pre) { @@ -1524,7 +1524,7 @@ def write_dataset_leaderboard_js_file_full( search: { regex: true, smart: true }, createdRow: function(row, data, dataIndex) { if ({{ model_highlight_rows | tojson }}.includes(data.Model)) { - $(row).css('background-color', '#fdece8'); + $(row).css('background-color', '#fef0e6'); } }, infoCallback: function(settings, start, end, max, total, pre) { @@ -1647,7 +1647,7 @@ def write_leaderboard_js_file_compact( responsive:true, createdRow: function(row, data, dataIndex) { if ({{ model_highlight_rows | tojson }}.includes(data.Model)) { - $(row).css('background-color', '#fdece8'); + $(row).css('background-color', '#fef0e6'); } }, infoCallback: function(settings, start, end, max, total, pre) { diff --git a/src/www.forecastbench.org/.gitignore b/src/www.forecastbench.org/.gitignore index c881ef77..7a6f9955 100644 --- a/src/www.forecastbench.org/.gitignore +++ b/src/www.forecastbench.org/.gitignore @@ -2,5 +2,6 @@ _site .sass-cache .jekyll-cache .jekyll-metadata +.bundle vendor entrypoint.sh diff --git a/src/www.forecastbench.org/_config.yml b/src/www.forecastbench.org/_config.yml index 899dda8a..8742d44c 100644 --- a/src/www.forecastbench.org/_config.yml +++ b/src/www.forecastbench.org/_config.yml @@ -7,8 +7,8 @@ description: "A dynamic, continuously-updated forecasting benchmark." name: "Forecasting Research Institute" url: "https://www.forecastbench.org" repository: "forecastingresearch/forecastbench" -logo: "/assets/images/logo/IconTransparentBCROP.png" -og_image: "/assets/images/logo/TextColor2.png" +logo: "/assets/images/logo/fri-icon-green.svg" +og_image: "/assets/images/logo/fri-icon-green.jpg" header_anchors: false @@ -56,6 +56,9 @@ footer: icon: "fas fa-fw fa-envelope" url: "mailto:forecastbench@forecastingresearch.org" +after_footer_scripts: + - /assets/js/mobile-nav.js + exclude: - entrypoint.sh - Procfile diff --git a/src/www.forecastbench.org/_includes/head/custom.html b/src/www.forecastbench.org/_includes/head/custom.html index 7da7c5d2..220b7e98 100644 --- a/src/www.forecastbench.org/_includes/head/custom.html +++ b/src/www.forecastbench.org/_includes/head/custom.html @@ -1,6 +1,15 @@ - + + + + + + + + + + {% if page.head_css %} {% for script in page.head_css %} diff --git a/src/www.forecastbench.org/_includes/masthead.html b/src/www.forecastbench.org/_includes/masthead.html index 22eaffc7..121d87a4 100644 --- a/src/www.forecastbench.org/_includes/masthead.html +++ b/src/www.forecastbench.org/_includes/masthead.html @@ -4,12 +4,19 @@