cyberstorm/book/observe/event.instance.tera

23 lines
487 B
Plaintext
Raw Normal View History

2021-03-02 04:17:16 +00:00
{% import "macros.tera" as macros %}
2021-03-03 02:38:15 +00:00
# {{ macros::doc_title(doc=doc) }}
2021-03-02 04:17:16 +00:00
2021-03-03 02:38:15 +00:00
{{ macros::doc_details(doc=doc) }}
2021-03-02 04:17:16 +00:00
{%- if doc.WindowsEvent %}
2021-03-03 02:38:15 +00:00
{{ macros::doc_details_next(title="Type", value="Windows event") }}
2021-03-02 04:17:16 +00:00
{% endif -%}
2021-03-03 02:38:15 +00:00
{{ macros::doc_details_next(title="Description", value=doc.description) }}
2021-03-02 04:17:16 +00:00
## Description
{{ macros::content(content=doc.content) }}
{% if doc.WindowsEvent %}
## Samples
{% for sample in doc.WindowsEvent.sample %}
```xml
{{ sample.xml }}
```
{% endfor %}
{% endif %}