You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.8 KiB

4 years ago
4 years ago
4 years ago
4 years ago
2 years ago
4 years ago
4 years ago
4 years ago
2 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. $(window).on('load', function() {
  2. $('.level-bar-inner').each(function() {
  3. var itemWidth = $(this).data('level');
  4. $(this).animate({
  5. width: itemWidth
  6. }, 800);
  7. });
  8. });
  9. jQuery(document).ready(function($) {
  10. /*======= Skillset *=======*/
  11. $('.level-bar-inner').css('width', '0');
  12. /* Bootstrap Tooltip for Skillset */
  13. $('.level-label').tooltip();
  14. /* jQuery RSS - https://github.com/sdepold/jquery-rss */
  15. $("#rss-feeds").rss(
  16. //Change this to your own rss feeds
  17. "https://yigit.run/index.xml",
  18. {
  19. // how many entries do you want?
  20. // default: 4
  21. // valid values: any integer
  22. limit: 2,
  23. // the effect, which is used to let the entries appear
  24. // default: 'show'
  25. // valid values: 'show', 'slide', 'slideFast', 'slideSynced', 'slideFastSynced'
  26. effect: 'slide',
  27. // outer template for the html transformation
  28. // default: "<ul>{entries}</ul>"
  29. // valid values: any string
  30. layoutTemplate: "<div class='items'>{entries}</div>",
  31. // inner template for each entry
  32. // default: '<li><a href="{url}">[{author}@{date}] {title}</a><br/>{shortBodyPlain}</li>'
  33. // valid values: any string
  34. entryTemplate: '<div class="item"><h3 class="title"><a href="{url}" target="_blank">{title}</a></h3><div><p>{shortBodyPlain}</p><a class="more-link" href="{url}" target="_blank"><i class="fas fa-external-link-alt"></i>Read more</a></div></div>'
  35. }
  36. );
  37. /* Github Calendar - https://github.com/IonicaBizau/github-calendar */
  38. new GitHubCalendar("#github-graph", "theFr1nge");
  39. /* Github Activity Feed - https://github.com/caseyscarborough/github-activity */
  40. GitHubActivity.feed({ username: "theFr1nge", selector: "#ghfeed" });
  41. });