Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
arahmandc committed Oct 6, 2024
1 parent 479e6e8 commit cc46765
Show file tree
Hide file tree
Showing 20 changed files with 344 additions and 222 deletions.
4 changes: 3 additions & 1 deletion _includes/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
<h1 class="space-bottom2">State of the Map Asia 2024</h1>
<p style="text-align: justify;">State of the Map Asia will bring together participants from around the world to discuss challenges, learn, and celebrate many years of mapping together. <a href="about" style="text-decoration: none;">......... Read More</a></p>
<a href="travel_support" style="text-decoration: none; color: rgb(14, 10, 248);"><h2>Non- Bangladeshi: Travel Support <span class="badge pulsate">Here !</span></h2></a>
<p class="logo">

{% include countdown.html %}
<p class="logo">
<img src="img/logo/State-of-the-Map-Asia-Logo.svg" style="width:80%;">
</p>
</div>
Expand Down
30 changes: 30 additions & 0 deletions _includes/countdown.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<script>
// Set the date we're counting down to
var countDownDate = new Date("Nov 30, 2024 08:00:00").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

// Get today's date and time
var now = new Date().getTime();

// Find the distance between now and the count down date
var distance = countDownDate - now;

// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);

// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = "See you in " + days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";

// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "It's Pista ng Mapa!";
}
}, 1000);
</script>
36 changes: 36 additions & 0 deletions _includes/css/sotm.css
Original file line number Diff line number Diff line change
Expand Up @@ -1280,3 +1280,39 @@ img {vertical-align: middle;}
clear: both;
display: table;
}


/* dropdown */


.dropdown-menu {
background-color:{{ site.color.links-light }};
color: white;
font-size: 16px;
border: none;
}

.dropdown {
position: relative;
display: inline-block;
}

.dropdown-item {
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
min-width: 200px;
z-index: 102;
}

.dropdown-item a {
color: black;
padding: 12px 16px;
text-decoration: none;
}
.dropdown-item a:hover {
text-decoration: none;
}


5 changes: 4 additions & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@
</div>
<nav class="col3 pad2x">
<a class="block" href="{{site.baseurl}}/about"block>About</a>
<a class="block" href="{{site.baseurl}}/coxsbazar">Cox's Bazar</a>
<a class="block" href="{{site.baseurl}}/coxsbazar">Venue</a>
<!-- <a class="block" href="{{site.baseurl}}/transport">Transportation</a> -->
<a class="block" href="{{site.baseurl}}/call4proposal">Call for Proposal</a>
<a class="block" href="{{site.baseurl}}/call4scholarship">Call for Scholarship</a>
<a class="block" href="{{site.baseurl}}/share_ur_story">Share Your Story</a>
<a class="block" href="{{site.baseurl}}/call4poster">Call for Poster</a>
<a class="block" href="{{site.baseurl}}/travel_support">Travel Support</a>
<!-- <a class="block" href="{{site.baseurl}}/calls/general"block>Call for Participation</a> -->
<!--<a class="block" href="https://lists.openstreetmap.org/pipermail/science/2021-February/000093.html">Call for applications for the Scientific Committee</a>-->
Expand Down
2 changes: 2 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@
<link rel="stylesheet" href="{{ "/style.css" | prepend: site.baseurl }}?{{site.time | date: '%s%N'}}">




</head>
45 changes: 0 additions & 45 deletions _includes/header1.html

This file was deleted.

39 changes: 20 additions & 19 deletions _includes/js.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
<!-- jQuery Version 1.11.0 -->
<script src="{{ "/js/jquery.js" | prepend: site.baseurl }}"></script>

<!-- Bootstrap Core JavaScript -->
<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>

<!-- Plugin JavaScript -->
<script src="{{ "/js/jquery.easing.min.js" | prepend: site.baseurl }}"></script>

<!-- Custom Theme JavaScript -->
<script src="{{ "/js/navbar-collapse.js" | prepend: site.baseurl }}"></script>

<!-- leaflet -->
<script src="{{ "/js/leaflet.js" | prepend: site.baseurl }}"></script>
<link rel="stylesheet" href="{{ "/css/leaflet.css" | prepend: site.baseurl }}" />


<!-- Slideshow -->
<script src="{{ "/js/slideshow.js" | prepend: site.baseurl }}"></script>
<!-- jQuery Version 1.11.0 -->
<script src="{{ "/js/jquery.js" | prepend: site.baseurl }}"></script>

<!-- Bootstrap Core JavaScript -->
<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>

<!-- Plugin JavaScript -->
<script src="{{ "/js/jquery.easing.min.js" | prepend: site.baseurl }}"></script>

<!-- Custom Theme JavaScript -->
<script src="{{ "/js/navbar-collapse.js" | prepend: site.baseurl }}"></script>

<!-- leaflet -->
<script src="{{ "/js/leaflet.js" | prepend: site.baseurl }}"></script>
<link rel="stylesheet" href="{{ "/css/leaflet.css" | prepend: site.baseurl }}" />


<!-- Slideshow -->
<script src="{{ "/js/slideshow.js" | prepend: site.baseurl }}"></script>

159 changes: 44 additions & 115 deletions _includes/nav.html
Original file line number Diff line number Diff line change
@@ -1,115 +1,44 @@
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top {% if page.role != "index" %} top-nav-collapse stay-collapsed {% endif %}" role="navigation">
<div class="limiter">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<span class="icon menu"></span>
</button>
<a class="navbar-brand" href="{{site.baseurl}}/">
SOTM Asia 2024
</a>
</div>

<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li class="hidden">
<a class="page-scroll" href="#page-top"></a>
</li>



<li><a class="{% if page.url contains '/about' %}active{% endif %}" href="{{site.baseurl}}/about">About</a></li>

<li><a class="{% if page.url contains '/coxsbazar' %}active{% endif %}" href="{{site.baseurl}}/coxsbazar">Cox's Bazar</a></li>

<li>
<a class="{% if page.url contains '/call4proposal' %}active{% endif %}" href="{{site.baseurl}}/call4proposal">Call for Proposal</a>
</li>
<li>
<a class="{% if page.url contains '/call4scholarship' %}active{% endif %}" href="{{site.baseurl}}/call4scholarship">Call for Scholarship</a>
</li>
<!-- <li>
<a class="{% if page.url contains '/travel_grant_programme' %}active{% endif %}" href="{{site.baseurl}}/calls/travel_grants">Travel Grants</a>
</li>
<li>
<a class="{% if page.url contains '/calls/posters' %}active{% endif %}" href="{{site.baseurl}}/calls/posters">Call for Posters</a>
</li>
<li>
<a class="{% if page.url contains '/calls/translators' %}active{% endif %}" href="{{site.baseurl}}/calls/translators">Call for Translators</a>
</li>
<li>
<a href="https://blog.openstreetmap.org/2020/01/18/sotm2020-applications-for-scholarships-open/">Apply for Scholarship</a>
</li>
<li>
<a class="{% if page.url contains '/tickets' %}active{% endif %}" href="{{site.baseurl}}/tickets/">Tickets</a>
</li>
<li>
<a class="{% if page.url contains '/stream' %}active{% endif %}" href="{{site.baseurl}}/stream/">Live Stream</a>
</li> -->

<!--<li>
{% if page.role == 'index' %}
<a class="page-scroll" href="#streaming">Videos</a>
{% else %}
<a class="" href="{{site.baseurl}}/#streaming">Videos</a>
{% endif %}
</li>-->
<!--<li>
<a class="{% if page.url contains '/programme' %}active{% endif %}" href="{{site.baseurl}}/programme/">Programme</a>
</li>-->
<!--<li>
<a class="{% if page.url contains '/academic_programme' %}active{% endif %}" href="{{site.baseurl}}/academic_programme/">Academic Programme</a>
</li>-->
<!--<li>
<a class="{% if page.url contains '/posters' %}active{% endif %}" href="{{site.baseurl}}/posters">Posters</a>
</li>-->
<!--<li>
<a class="{% if page.url contains '/events' %}active{% endif %}" href="{{site.baseurl}}/events/">Social Event</a>
</li>-->
<!--<li>
<a href="https://wiki.openstreetmap.org/wiki/State_of_the_Map_2022/registration_lightning_talks">Call for Lightning Talks</a>
</li>-->
<!-- <li>
<a class="{% if page.url contains '/venue' %}active{% endif %}" href="{{site.baseurl}}/venue/">Bangladesh</a>
</li> -->
<!--<li>
<a class="{% if page.url contains '/faq' %}active{% endif %}" href="{{site.baseurl}}/faq/">FAQ</a>
</li>-->
<!--<li>
<a class="{% if page.url contains '/artwork' %}active{% endif %}" href="{{site.baseurl}}/artwork/">Artwork</a>
</li>-->
<!--<li>
{% if page.role == 'index' %}
<a class="page-scroll" href="#newsletter">Newsletter</a>
{% else %}
<a class="" href="{{site.baseurl}}/#newsletter">Newsletter</a>
{% endif %}
</li>-->
<!--<li>
<a class="{% if page.url contains '/sponsoring' %}active{% endif %}" href="{{site.baseurl}}/sponsoring/">Sponsoring</a>
</li>-->
<!-- <li>
{% if page.role == 'index' %}
<a class="page-scroll" href="#about">About</a>
{% else %}
<a class="" href="{{site.baseurl}}/#about">About</a>
{% endif %}
</li> -->
<!-- <li>
{% if page.role == 'index' %}
<a class="page-scroll" href="#sponsors">Sponsors</a>
{% else %}
<a class="" href="{{site.baseurl}}/#sponsors">Sponsors</a>
{% endif %}
</li> -->
<!--<li>
<a class="{% if page.url contains '/attending' %}active{% endif %}" href="{{site.baseurl}}/attending/">Attending</a>
</li>-->
<!--<li>
<a class="{% if page.url contains '/codeofconduct' %}active{% endif %}" href="{{site.baseurl}}/codeofconduct">Code of conduct</a>
</li>-->
</ul>
</div>
</div>
</nav>
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top {% if page.role != "index" %} top-nav-collapse stay-collapsed {% endif %}" role="navigation">
<div class="limiter">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<span class="icon menu"></span>
</button>
<a class="navbar-brand" href="{{site.baseurl}}/">
SOTM Asia 2024
</a>
</div>

<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<div class="nav navbar-nav">

<li class="hidden">
<a class="page-scroll" href="#page-top"></a>
</li>

<li><a class="{% if page.url contains '/about' %}active{% endif %}" href="{{site.baseurl}}/about">About</a></li>
<li class="nav-item dropdown btn-hover navbar-main-collapse">
<a class="nav-link page-scroll" data-toggle="dropdown" href="">Conference <i class="icon down animated"></i></a>
<ul class="nav navbar-nav dropdown-menu">
<li><a class="{% if page.url contains '/call4proposal' %}active{% endif %}" href="{{site.baseurl}}/call4proposal">Call for Proposal</a></li>
<li><a class="{% if page.url contains '/call4scholarship' %}active{% endif %}" href="{{site.baseurl}}/call4scholarship">Call for Scholarship</a></li>
<li><a class="{% if page.url contains '/share_ur_story' %}active{% endif %}" href="{{site.baseurl}}/share_ur_story">Share Your Story</a></li>
<li><a class="{% if page.url contains '/call4poster' %}active{% endif %}" href="{{site.baseurl}}/call4poster">Call for Posters</a></li>
</ul>
</li>
<li class="nav-item dropdown btn-hover navbar-main-collapse">
<a class="nav-link page-scroll" data-toggle="dropdown" href="">Cox's Bazar <i class="icon down animated"></i></a>
<ul class="nav navbar-nav dropdown-menu">
<li><a class="{% if page.url contains '/coxsbazar' %}active{% endif %}" href="{{site.baseurl}}/coxsbazar">Venue</a></li>
<li><a class="{% if page.url contains '/transport' %}active{% endif %}" href="{{site.baseurl}}/transport">Transportation</a></li>
</ul>
</li>

<!-- <li><a class="{% if page.url contains '/coxsbazar' %}active{% endif %}" href="{{site.baseurl}}/coxsbazar"> &amp; </a></li> -->



</div>
</div>
</nav>
38 changes: 38 additions & 0 deletions call4poster.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
layout: page-with-toc
color: purple
title: Call for Poster
headings: ""
---

## Call for Poster

State of the Map (SotM) Asia 2024, State of the Map Bangladesh 2024 and YouthMappers Bangladesh Summit 2024 invites you to showcase your OpenStreetMap (OSM) projects, research, and community efforts through posters. This conference is an excellent platform for sharing innovative uses of OSM data, technical developments, and community stories within the Asia region.

## Submission requirements
* The Poster should be for A0 size (841×1189 mm)
* The Poster should be related to OpenStreetMap
* The Poster should be open, innovative, and transparent (no copying)
* The Poster must be your own work (individual, team or institution)
* The Poster should be under an open license (CC-BY-SA 3.0 or later recommended or CC0 )
* Maximum two entries per person, team or institution

## How to enter
**Upload your poster via
File size maximum 30-40 MB
Format: PDF**

## Mechanism and Benefits
Among the submitted posters, the top 15 posters will take place for the final presentation during the conference. The authors of the selected 15 posters will get free entry to the conference.
Within selected 15 posters, top 5 posters will receive a crest and a certificate. Top poster will be defined by the open participant votes. The rest of the top authors will receive a certificate.




Please submit your poster through the **[<font color="blue">Submission Form</font>](https://docs.google.com/forms/d/e/1FAIpQLSecv5i4VwMx5mmlgpfusUNLjVM97VLRoEbWOHZiMv8QX7pInQ/viewform)** with a description of your poster. For example, the background of the project or whatever you consider important to mention in the context of the poster – all that you would tell people if you show them your poster.

Please also mention the filename of the uploaded poster in your email, so that we can know which of the uploaded posters is yours.


## Timeline
**Deadline: November 10, 2024**
Loading

0 comments on commit cc46765

Please sign in to comment.