-
Notifications
You must be signed in to change notification settings - Fork 348
Landing page refresh #4037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Landing page refresh #4037
Conversation
Build successful. Some useful links:
This preview will be removed when the branch is merged. |
{{ if (fileExists "/data-export/anthology.bib.gz") }} | ||
<div class="col-6 col-xl-12 mb-2"> | ||
<a class="btn btn-block btn-info" href="{{ "anthology.bib.gz" | relURL }}">Full Anthology as BibTeX ({{ printf "%.2f MB" (div (os.Stat "/data-export/anthology.bib.gz").Size 1000000.0) }})</a> | ||
<a class="btn btn-block btn-info" href="{{ "anthology+abstracts.bib.gz" | relURL }}">…with abstracts ({{ printf "%.2f MB" (div (os.Stat "/data-export/anthology+abstracts.bib.gz").Size 1000000.0) }})</a> | ||
</div> | ||
{{ end }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the rationale behind removing these entirely from the front page?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just aesthetics, really. I could restore it if you like, but I would probably change them up.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think people ever download those by clicking on the links? What if we replaced the button link target to one that points to the "citation files" section of the FAQ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would assume so, but the server logs should know best ;)
Maybe a small italics note “Looking for bib files? See this FAQ” or something could also work, if you don’t want the buttons.
I'd like to refresh the landing page a bit and am using this to test ideas.
A related issue is that it would be nice to have a quick way to build a dummy version of the Anthology without all the files, for convenience with testing ideas with the site itself. e.g., limit the build to papers from the current year only, or something of that sort, but I imagine this will break all sorts of things.