Skip to content

Latest commit

 

History

History
94 lines (71 loc) · 2.78 KB

index.md

File metadata and controls

94 lines (71 loc) · 2.78 KB
layout title tags level type altfooter meetup-group country postal-code
col-sidebar
OWASP Project-Chapter Example
example-tag
2
example
true
OWASP-Austin-Chapter
{% include address_multiline.html %}

{% assign i18n = site.data.i18n_en | where: 'id', 'index' | first %}

{{ i18n.intro | markdownify }}

Quick test - something something - Something else

A List of Donors

{% assign individual_supporter = site.data.ow_attributions | uniq %} {% for supporter in individual_supporter %}

  • {{ supporter | strip_html | strip_newlines | strip }} {% endfor %}
Heading 1 Heading 2 Heading 3
Data More Data Even More Data
Hello New World
This is a test of the jump here fragment

👍

{% for m in site.data.tstmenu %} MENU {% endfor %}

image

{{ site.posts.first.author }}, {{ site.posts.first.date | date: "%B %e, %Y" }}

{{ site.posts.first.excerpt }}...read more

12:00 - 13:00 - Opening Session

Testing theme data elements

{% for project in site.data.projects %} {{ project.name }} {% endfor %}

{% assign category = site.data.events | where: "category", "Global" | first %}

Check our Upcoming Meetup Events:

{% include chapter_events.html group=page.meetup-group %}

<script type='text/javascript'> $(function(){ $(".timeclass").hover(function() { utc_str = $(this).text(); ndx = utc_str.indexOf(':'); st_hour_str = utc_str.substring(0, ndx); st_min_str = utc_str.substring(ndx + 1, ndx + 3); utc_dt = luxon.DateTime.utc(2020, 06, 06, parseInt(st_hour_str), parseInt(st_min_str), 0); start_dt = utc_dt.setZone(luxon.DateTime.local().zoneName); ndx = utc_str.lastIndexOf(':'); end_hour_str = utc_str.substring(ndx - 2, ndx - 1); end_min_str = utc_str.substring(ndx + 1, ndx + 3); utc_dt = luxon.DateTime.utc(2020, 06, 06, parseInt(end_hour_str), parseInt(end_min_str), 0); end_dt = utc_dt.setZone(luxon.DateTime.local().zoneName); popstr = start_dt.toLocaleString(luxon.DateTime.TIME_WITH_SECONDS) + ' to ' + end_dt.toLocaleString(luxon.DateTime.TIME_WITH_SHORT_OFFSET); $(this).prop('title', popstr); }); }); </script>