Add publication section (#620)

* Add publication section

Signed-off-by: hossainemruz <hossainemruz@gmail.com>

* Don't make tags clickable

Signed-off-by: hossainemruz <hossainemruz@gmail.com>
This commit is contained in:
Emruz Hossain 2022-07-29 23:12:14 +06:00 committed by GitHub
parent eb167e0155
commit b81fd5078b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 239 additions and 5 deletions

View file

@ -1,6 +1,6 @@
"use strict";
var projectCards;
var projectCards, publicationCards;
(function ($) {
jQuery(document).ready(function () {
@ -79,7 +79,22 @@ var projectCards;
var projectCardHolder = document.getElementById("project-card-holder");
if (projectCardHolder != null && projectCardHolder.children.length != 0) {
projectCards = $(".filtr-projects").filterizr({ layout: 'sameWidth' });
projectCards = $(".filtr-projects").filterizr(
{
layout: 'sameWidth',
controlsSelector: '.project-filtr-control',
});
}
// ================== Publication cards =====================
var publicationCardHolder = document.getElementById("publication-card-holder");
if (publicationCardHolder != null && publicationCardHolder.children.length != 0) {
publicationCards = $(".filtr-publications").filterizr(
{
layout: 'sameWidth',
gridItemsSelector: '.pub-filtr-item',
controlsSelector: '.pub-filtr-control',
});
}
function showGithubStars() {