Adding socials buttons
parent
35c34b8313
commit
780dfd5ad6
|
@ -1,9 +1,9 @@
|
||||||
# Deployment - SCCM
|
# Deployment - SCCM
|
||||||
|
|
||||||
## SCCM Application Deployment
|
|
||||||
|
|
||||||
> SCCM is a solution from Microsoft to enhance administration in a scalable way across an organisation.
|
> SCCM is a solution from Microsoft to enhance administration in a scalable way across an organisation.
|
||||||
|
|
||||||
|
## SCCM Application Deployment
|
||||||
|
|
||||||
* [PowerShellMafia/PowerSCCM - PowerShell module to interact with SCCM deployments](https://github.com/PowerShellMafia/PowerSCCM)
|
* [PowerShellMafia/PowerSCCM - PowerShell module to interact with SCCM deployments](https://github.com/PowerShellMafia/PowerSCCM)
|
||||||
* [nettitude/MalSCCM - Abuse local or remote SCCM servers to deploy malicious applications to hosts they manage](https://github.com/nettitude/MalSCCM)
|
* [nettitude/MalSCCM - Abuse local or remote SCCM servers to deploy malicious applications to hosts they manage](https://github.com/nettitude/MalSCCM)
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
POC
|
|
|
@ -7,6 +7,7 @@ edit_uri: blob/main/docs/
|
||||||
|
|
||||||
theme:
|
theme:
|
||||||
name: material
|
name: material
|
||||||
|
custom_dir: overrides
|
||||||
color_mode: auto
|
color_mode: auto
|
||||||
user_color_mode_toggle: true
|
user_color_mode_toggle: true
|
||||||
icon:
|
icon:
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
{{ super() }}
|
||||||
|
<div class="social-container">
|
||||||
|
<b>Share this content</b>
|
||||||
|
<div class="a2a_kit a2a_kit_size_32 a2a_default_style">
|
||||||
|
<a class="a2a_dd" href="https://www.addtoany.com/share"></a>
|
||||||
|
<a class="a2a_button_x"></a>
|
||||||
|
<a class="a2a_button_telegram"></a>
|
||||||
|
<a class="a2a_button_linkedin"></a>
|
||||||
|
<a class="a2a_button_email"></a>
|
||||||
|
<a class="a2a_button_microsoft_teams"></a>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<script async src="https://static.addtoany.com/menu/page.js"></script>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block styles %}
|
||||||
|
{{ super() }}
|
||||||
|
<style>
|
||||||
|
.social-container {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue