Skip to content

Latest commit

 

History

History
62 lines (53 loc) · 2.42 KB

index.md

File metadata and controls

62 lines (53 loc) · 2.42 KB
layout title description
default
AI Timeline
A comprehensive timeline of Artificial Intelligence milestones from 2022 to present.
🌙

Artificial Intelligence Timeline

2022 - Present

2022 2023 2024
{% for year in site.data.timeline %}
<section class="year" id="{{ year.year }}">
    <h2>{{ year.year }}</h2>

    {% for event in year.events %}
    <article class="event" data-date="{{ event.date }}">
        <h3 class="date">{{ event.date | date: "%B" }}</h3>
        {% for info in event.info %}
        <p class="info {% if info.special %}special{% endif %}">{{ info.text }}</p>
        {% endfor %}
    </article>
    {% endfor %}
</section>
{% endfor %}

Learn more:

{% include footer.html %} <script src="{{ '/assets/js/script.js' | relative_url }}" defer></script>