We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
?theme=random
It would be useful to be able to visit
https://registry.jsonresume.org/thomasdavis?theme=random
and it redirect you to a random theme.
This could be as simple as making ?theme=random a special endpoint, and returning something like
<!DOCTYPE html> <html lang="en"> <head> <script> // redirect options = ["kendall", "onepage", "simple"]; window.location.href = "https://registry.jsonresume.org/thomasdavis?theme=" + options[Math.floor(Math.random() * options.length)]; </script> </head> </html>
The text was updated successfully, but these errors were encountered:
I like this idea, will do.
Sorry, something went wrong.
I think the random choice of the random theme should and can easily be done on the server side.
Merge pull request #7 from levino/feature/ci
00d509b
Feature/ci
No branches or pull requests
It would be useful to be able to visit
https://registry.jsonresume.org/thomasdavis?theme=random
and it redirect you to a random theme.
This could be as simple as making
?theme=random
a special endpoint, and returning something likeThe text was updated successfully, but these errors were encountered: