Skip to content

Latest commit

 

History

History
88 lines (62 loc) · 2.23 KB

index.md

File metadata and controls

88 lines (62 loc) · 2.23 KB
layout title tags level type altfooter meetup-group country postal-code
col-sidebar
OWASP Project-Chapter Example
example-tag
4
example
true
owasp-los-angeles

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

{{ i18n.intro | markdownify }}

A List of Donors

{% as#dividual_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.yml %} MENU {% endfor %}

12:00 - 13:00 - Opening Session

{% 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>