Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion attack-theme/templates/general/base-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<div class="footer-float-right-responsive-brand">
<div class="row row-footer row-footer-icon">
<div class="mb-1">
<a href="https://twitter.com/MITREattack" class="btn btn-footer">
<a href="https://x.com/MITREattack" class="btn btn-footer">
<i class="fa-brands fa-x-twitter fa-lg"></i>
</a>
<a href="https://github.com/mitre-attack" class="btn btn-footer">
Expand Down
4 changes: 0 additions & 4 deletions modules/benefactors/benefactors.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
import json
import math
import os

from modules import util

from . import benefactors_config
from .. import site_config


def generate_benefactors():
"""Generate benefactors page markdown"""

# Create content pages directory if does not already exist
util.buildhelpers.create_content_pages_dir()

Expand Down
22 changes: 15 additions & 7 deletions modules/resources/templates/attackcon.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,28 @@ <h1>ATT&amp;CKcon</h1>
Learn about future ATT&amp;CKcons by keeping up with us at <a href="/resources/engage-with-attack/contact/">Engage with ATT&amp;CK</a>
</p>
<div class="card-deck">
{{contact_card.render(
"ATT&CKcon 6.0",
"https://na.eventscloud.com/attackcon6",
"<strong>October 14th - 15th, 2025</strong><br>McLean, VA",
fa_icon=True)}}
{{contact_card.render(
"ATT&CKcon 5.0",
"/resources/attackcon/october-2024/",
"<strong>October 22nd - 23rd, 2024</strong><br>McLean, VA",
invert_icon=True)}}
"<strong>October 22nd - 23rd, 2024</strong><br>McLean, VA", invert_icon=True)}}
{{contact_card.render(
"ATT&CKcon 4.0",
"/resources/attackcon/october-2023/",
"<strong>October 24th - 25th, 2023</strong><br>McLean, VA",
invert_icon=True)}}
{{contact_card.render(
"ATT&CKcon 3.0",
"/resources/attackcon/march-2022/",
"<strong>March 29th - 30th, 2022</strong><br>McLean, VA",
invert_icon=True)}}
</div>

<div class="card-deck mt-3">
{{contact_card.render(
"ATT&CKcon 3.0",
"/resources/attackcon/march-2022/",
"<strong>March 29th - 30th, 2022</strong><br>McLean, VA",
invert_icon=True)}}
{{contact_card.render(
"ATT&CKcon PowerHour",
"/resources/attackcon/october-2020/",
Expand All @@ -56,9 +60,13 @@ <h1>ATT&amp;CKcon</h1>
{{contact_card.render("ATT&CKcon 2.0", "/resources/attackcon/october-2019/", "<strong>October 29th - 30th,
2019</strong><br>McLean, VA",
invert_icon=True)}}
</div>
<div class="card-deck mt-3">
{{contact_card.render("ATT&CKcon 2018", "/resources/attackcon/october-2018/", "<strong>October 23rd - 24th,
2018</strong><br>McLean, VA",
invert_icon=True)}}
<div class="card" style="visibility: hidden;"></div>
<div class="card" style="visibility: hidden;"></div>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion modules/resources/templates/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>Stay Informed</h1>
Here's how you can find other community members, find out what they're doing with ATT&CK, and get involved.
</span>
<div class="card-deck mt-4">
{{contact_card.render("Twitter", "https://twitter.com/MITREattack", "Follow us @MITREattack to hear about news, latest updates, and what community members are doing with ATT&CK.", "fa-brands fa-x-twitter", invert_icon=True)}}
{{contact_card.render("X", "https://x.com/MITREattack", "Follow us @MITREattack to hear about news, latest updates, and what community members are doing with ATT&CK.", "fa-brands fa-x-twitter", invert_icon=True)}}
{{contact_card.render("Medium", "https://medium.com/mitre-attack", "Check out our Medium blog for ATT&CK updates and information.", "fa-brands fa-medium", invert_icon=True)}}
{{contact_card.render("Slack", "https://join.slack.com/t/mitreattack/shared_invite/zt-38j8youxv-4P5sN4A8rklw3B_a3dOwgg", "Join the ATT&CK slack workspace! With over 3,000 members and 15 channels, find and start discussions with the community on all things ATT&CK.", "fa-brands fa-slack", invert_icon=True)}}
</div>
Expand Down
Loading