-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from nukehub-dev/develop
Develop
- Loading branch information
Showing
24 changed files
with
347 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This YAML structure defines categories for sponsor entries. | ||
# Each containing details such as name, description, image, and URL. | ||
|
||
# Fields: | ||
# name (required): The name of the sponsor. | ||
# image (required): The transparent background image of the sponsor. | ||
# url (required): The URL of the sponsor. | ||
# acknowledgment (required): Acknowledgment for the sponsor. | ||
|
||
- name: Military Institute of Science and Technology (MIST) | ||
image: /assets/images/sponsors/MIST.png | ||
url: https://mist.ac.bd | ||
acknowledgment: > | ||
Heartfelt thanks to the Military Institute of Science and Technology (MIST) | ||
for generously hosting NukeHub on their servers. Their support is instrumental | ||
in ensuring the smooth operation and accessibility of our platform. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<div class="box_container container grid sponsors"> | ||
{% for obj in include.data %} | ||
<div class="box_content" id="sponsor{{ forloop.index }}" style="padding: 0"> | ||
<div class="box_bg"></div> | ||
<div class="our-sponsor"> | ||
<a class="picture" target="_blank" href="{{ obj.url }}"> | ||
<img class="img-fluid" src="{{ obj.image }}" alt="{{ obj.name }}"> | ||
</a> | ||
<p class="box_title">{{ obj.name }}</p> | ||
<div class="acknowledgment"> | ||
<p>{{ obj.acknowledgment }}</p> | ||
<a target="_blank" href="{{ obj.url }}" class="button button--flex"> | ||
Visit Site <i class="nuke-arrow-ios-forward button_icon"></i> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
<script> | ||
$(function () { | ||
$.contextMenu({ | ||
selector: "#sponsor{{ forloop.index }}", | ||
callback: function (key, options) { | ||
var m = "clicked: " + key; | ||
}, | ||
animation: { | ||
duration: 200, | ||
show: "fadeIn", | ||
hide: "fadeOut", | ||
}, | ||
zIndex: 10000, | ||
items: { | ||
//{% if obj.url %} | ||
"url": { | ||
name: "<i class='nuke-share-1 context_menu-icon'></i> Visit Site", | ||
isHtmlName: true, | ||
callback: function (key, options) { | ||
window.location.href = "{{ obj.url }}"; | ||
}, | ||
}, | ||
// {% endif %} | ||
}, | ||
}); | ||
}); | ||
</script> | ||
{% endfor %} | ||
</div> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
--- | ||
layout: page | ||
id: about | ||
id: events | ||
title: Events | ||
description: >- | ||
Discover and engage with the latest happenings in nuclear technology. | ||
Get comprehensive details about each event, including schedules, venues, | ||
speakers, and more. Stay connected with the global nuclear community and | ||
join us in shaping the future of nuclear science and engineering. | ||
Discover and engage with the latest happenings in nuclear technology. | ||
Get comprehensive details about each event, including schedules, venues, | ||
speakers, and more. Stay connected with the global nuclear community and | ||
join us in shaping the future of nuclear science and engineering. | ||
permalink: /events | ||
--- | ||
|
||
# Events | ||
|
||
{% include calendar.html %} | ||
{% include calendar.html %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.