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:
parent
eb167e0155
commit
b81fd5078b
7 changed files with 239 additions and 5 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue