Skip to content

Commit

Permalink
<SECTION>
Browse files Browse the repository at this point in the history
<style>
.adminsquares > * {
  border: 1px solid #c9ff23;
  border-radius: 5px;
  padding: 0px;
  flex: 1 1 100px;
  overflow: hidden;
  }

.adminsquares {
  display: flex;
  flex-flow: row wrap; 
  padding: 15px;
  gap: 5px;
  width:100%;
  height: auto;
}


.adminsquares img {
  width: 100%;
}


</style>    
<div class="adminsquares">
{% for post in site.posts %}
    
<ARTICLE itemprop="blogPosts" itemscope itemtype="https://schema.org/BlogPosting" >
  <a href="{{ site.github.url }}{{ post.url }}">
    <div class="featured-post" {% if post.image %}style="background-image:url({{ site.github.url }}/assets/img/{{ post.image }})"{% endif %}>
      <h2 itemprop="headline"><span>{{ post.title }}</span></h2>
    </div>
  </a>
</ARTICLE>

{% endfor %}
</div>



</SECTiON>
</MAIN>
  • Loading branch information
ricoThaka authored Dec 7, 2024
1 parent 58965f6 commit a8270da
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _posts/2024-12-07-admin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[Canada Firemaps](https://www.arcgis.com/apps/dashboards/3ffcc2d0ef3e4e0999b0cf8b636defa3)
[NASA_LANCE_FiRMS](https://firms.modaps.eosdis.nasa.gov/usfs/map/#d:24hrs;@-97.1,40.4,4.4z)


46 changes: 46 additions & 0 deletions admin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@


<SECTION>
<style>
.adminsquares > * {
border: 1px solid #c9ff23;
border-radius: 5px;
padding: 0px;
flex: 1 1 100px;
overflow: hidden;
}

.adminsquares {
display: flex;
flex-flow: row wrap;
padding: 15px;
gap: 5px;
width:100%;
height: auto;
}


.adminsquares img {
width: 100%;
}


</style>
<div class="adminsquares">
{% for post in site.posts %}

<ARTICLE itemprop="blogPosts" itemscope itemtype="https://schema.org/BlogPosting" >
<a href="{{ site.github.url }}{{ post.url }}">
<div class="featured-post" {% if post.image %}style="background-image:url({{ site.github.url }}/assets/img/{{ post.image }})"{% endif %}>
<h2 itemprop="headline"><span>{{ post.title }}</span></h2>
</div>
</a>
</ARTICLE>

{% endfor %}
</div>



</SECTiON>
</MAIN>

0 comments on commit a8270da

Please sign in to comment.