diff --git a/styles/scaffoldBB/template/event/memberlist_view_contact_custom_fields_after.html b/styles/scaffoldBB/template/event/memberlist_view_contact_custom_fields_after.html new file mode 100644 index 0000000..dcb023d --- /dev/null +++ b/styles/scaffoldBB/template/event/memberlist_view_contact_custom_fields_after.html @@ -0,0 +1,6 @@ +{% if S_STEAMSTATUS_SHOW %} +
  • + {{ lang('STEAMSTATUS_STEAM') ~ lang('COLON') }} +
    {% include '@stevotvr_steamstatus/steamstatus.html' %}
    +
  • +{% endif %} diff --git a/styles/scaffoldBB/template/event/overall_footer_body_after.html b/styles/scaffoldBB/template/event/overall_footer_body_after.html new file mode 100644 index 0000000..7e6a96b --- /dev/null +++ b/styles/scaffoldBB/template/event/overall_footer_body_after.html @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/styles/scaffoldBB/template/event/overall_header_head_append.html b/styles/scaffoldBB/template/event/overall_header_head_append.html new file mode 100644 index 0000000..d93e95d --- /dev/null +++ b/styles/scaffoldBB/template/event/overall_header_head_append.html @@ -0,0 +1,6 @@ +{% if S_STEAMSTATUS %} + {% INCLUDECSS '@stevotvr_steamstatus/steamstatus.css' %} + {% INCLUDEJS '@stevotvr_steamstatus/steamstatus.js' %} +{% endif %} + + diff --git a/styles/scaffoldBB/template/event/viewtopic_body_contact_fields_after.html b/styles/scaffoldBB/template/event/viewtopic_body_contact_fields_after.html new file mode 100644 index 0000000..8e1397c --- /dev/null +++ b/styles/scaffoldBB/template/event/viewtopic_body_contact_fields_after.html @@ -0,0 +1,5 @@ +{% if postrow.S_STEAMSTATUS_SHOW %} +
  • + {% include '@stevotvr_steamstatus/steamstatus.html' with postrow %} +
  • +{% endif %} diff --git a/styles/scaffoldBB/template/ucp_steamstatus_body.html b/styles/scaffoldBB/template/ucp_steamstatus_body.html new file mode 100644 index 0000000..8f27adf --- /dev/null +++ b/styles/scaffoldBB/template/ucp_steamstatus_body.html @@ -0,0 +1,36 @@ +{% include 'ucp_header.html' %} + +

    {{ lang('UCP_STEAMSTATUS_TITLE') }}

    + +
    +
    +

    {{ lang('UCP_STEAMSTATUS_NOTICE') }}

    + + {% if ERROR %}

    {{ ERROR }}

    {% endif %} + + {% if STEAMSTATUS_STEAMID %} + +
    + +
    + + {{ lang('UCP_STEAMSTATUS_STEAMID') ~ lang('COLON') }} {{ STEAMSTATUS_STEAMID }} + +
    + +
    + + {% if S_STEAMSTATUS_SHOW %} + {% include '@stevotvr_steamstatus/steamstatus.html' %} + {% endif %} + + {% else %} + + {{ lang('UCP_STEAMSTATUS_OPENID_IMG_ALT') }} + + {% endif %} + +
    +
    + +{% include 'ucp_footer.html' %} diff --git a/styles/scaffoldBB/theme/steamstatus.css b/styles/scaffoldBB/theme/steamstatus.css new file mode 100644 index 0000000..28158c2 --- /dev/null +++ b/styles/scaffoldBB/theme/steamstatus.css @@ -0,0 +1,6 @@ +@import url("../../all/theme/steamstatus.css"); + + +.steamstatus { + height: auto; +} \ No newline at end of file