File tree Expand file tree Collapse file tree 4 files changed +33
-263
lines changed
Expand file tree Collapse file tree 4 files changed +33
-263
lines changed Original file line number Diff line number Diff line change 1+ exploit-notes.hdks.org
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ site_url: https://exploit-notes.hdks.org
33repo_url : https://github.com/hdks-bug/exploit-notes
44theme :
55 name : material
6- # custom_dir: overrides
6+ custom_dir : overrides
77 favicon : assets/logo.png
88 logo : assets/logo.png
99 font :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ {% set title = lang.t("toc") %}
2+ {% if config.mdx_configs.toc and config.mdx_configs.toc.title %}
3+ {% set title = config.mdx_configs.toc.title %}
4+ {% endif %}
5+ < nav class ="md-nav md-nav--secondary " aria-label ="{{ title | e }} ">
6+ {% set toc = page.toc %}
7+ {% set first = toc | first %}
8+ {% if first and first.level == 1 %}
9+ {% set toc = first.children %}
10+ {% endif %}
11+ {% if toc %}
12+ < label class ="md-nav__title " for ="__toc ">
13+ < span class ="md-nav__icon md-icon "> </ span >
14+ {{ title }}
15+ </ label >
16+ < ul class ="md-nav__list " data-md-component ="toc " data-md-scrollfix >
17+ {% for toc_item in toc %}
18+ {% include "partials/toc-item.html" %}
19+ {% endfor %}
20+ </ ul >
21+ < div style ="margin: 12px 0; ">
22+ < div id ="carbonads "> </ div >
23+ < script
24+ async
25+ type ="text/javascript "
26+ src ="//cdn.carbonads.com/carbon.js?serve=CWYDE53L&placement=exploit-noteshdksorg&format=cover "
27+ id ="_carbonads_js ">
28+ </ script >
29+ </ div >
30+ {% endif %}
31+ </ nav >
You can’t perform that action at this time.
0 commit comments