Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit411fb2f

Browse files
authored
Add finteza tracker to the site
1 parent4287ea1 commit411fb2f

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

‎_layouts/default.html‎

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
---
2+
layout: table_wrappers
3+
---
4+
5+
<!DOCTYPE html>
6+
7+
<htmllang="{{ site.lang | default:"en-US" }}">
8+
{% include head.html %}
9+
<body>
10+
<scripttype="text/javascript">
11+
(function(a,e,f,g,b,c,d){a[b]||(a.FintezaCoreObject=b,a[b]=a[b]||function(){(a[b].q=a[b].q||[]).push(arguments)},a[b].l=1*newDate,c=e.createElement(f),d=e.getElementsByTagName(f)[0],c.async=!0,c.defer=!0,c.src=g,d&&d.parentNode&&d.parentNode.insertBefore(c,d))})
12+
(window,document,"script","https://content.mql5.com/core.js","fz");
13+
fz("register","website","figfqiucisqvbkzruorbjefvctzljtvfeo");
14+
</script>
15+
<divclass="page-wrap">
16+
<divclass="side-bar">
17+
<divclass="site-header">
18+
<ahref="{{ site.url }}{{ site.baseurl }}"class="site-title lh-tight">{% include title.html %}</a>
19+
<buttonclass="menu-button fs-3 js-main-nav-trigger"data-text-toggle="Hide"type="button">Menu</button>
20+
</div>
21+
22+
<divclass="navigation main-nav js-main-nav">
23+
{% include nav.html %}
24+
</div>
25+
<footerclass="site-footer">
26+
<pclass="text-small text-grey-dk-000 mb-4">This site uses<ahref="https://github.com/pmarsceill/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.</p>
27+
</footer>
28+
</div>
29+
<divclass="main-content-wrap js-main-content"tabindex="0">
30+
<divclass="main-content">
31+
<divclass="page-header js-page-header">
32+
{% if site.search_enabled != false %}
33+
<divclass="search">
34+
<divclass="search-input-wrap">
35+
<inputtype="text"class="js-search-input search-input"tabindex="0"placeholder="Search {{ site.title }}"aria-label="Search {{ site.title }}"autocomplete="off">
36+
<svgwidth="14"height="14"viewBox="0 0 28 28"xmlns="http://www.w3.org/2000/svg"class="search-icon"><title>Search</title><gfill-rule="nonzero"><pathd="M17.332 20.735c-5.537 0-10-4.6-10-10.247 0-5.646 4.463-10.247 10-10.247 5.536 0 10 4.601 10 10.247s-4.464 10.247-10 10.247zm0-4c3.3 0 6-2.783 6-6.247 0-3.463-2.7-6.247-6-6.247s-6 2.784-6 6.247c0 3.464 2.7 6.247 6 6.247z"/><pathd="M11.672 13.791L.192 25.271 3.02 28.1 14.5 16.62z"/></g></svg>
37+
</div>
38+
<divclass="js-search-results search-results-wrap"></div>
39+
</div>
40+
{% endif %}
41+
{% if site.aux_links != nil %}
42+
<ulclass="list-style-none text-small aux-nav">
43+
{% for link in site.aux_links %}
44+
<liclass="d-inline-block my-0{% unless forloop.last %} mr-2{% endunless %}"><ahref="{{ link.last }}">{{ link.first }}</a></li>
45+
{% endfor %}
46+
</ul>
47+
{% endif %}
48+
</div>
49+
<divclass="page">
50+
{% unless page.url == "/" %}
51+
{% if page.parent %}
52+
<navclass="breadcrumb-nav">
53+
<olclass="breadcrumb-nav-list">
54+
{% if page.grand_parent %}
55+
<liclass="breadcrumb-nav-list-item"><ahref="{{ first_level_url }}">{{ page.grand_parent }}</a></li>
56+
<liclass="breadcrumb-nav-list-item"><ahref="{{ second_level_url }}">{{ page.parent }}</a></li>
57+
{% else %}
58+
<liclass="breadcrumb-nav-list-item"><ahref="{{ first_level_url }}">{{ page.parent }}</a></li>
59+
{% endif %}
60+
<liclass="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
61+
</ol>
62+
</nav>
63+
{% endif %}
64+
{% endunless %}
65+
<divid="main-content"class="page-content"role="main">
66+
{% if site.heading_anchors != false %}
67+
{% include vendor/anchor_headings.html html=content beforeHeading = "true" anchorBody="<svgclass=\"d-inline-block v-align-middle\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"18\" height=\"18\" aria-hidden=\"true\"><pathfill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg>" anchorClass="anchor-heading" %}
68+
{% else %}
69+
{{ content }}
70+
{% endif %}
71+
72+
{% if page.has_children == true and page.has_toc != false %}
73+
<hr>
74+
<h2class="text-delta">Table of contents</h2>
75+
{% assign children_list = site.pages | sort:"nav_order" %}
76+
<ul>
77+
{% for child in children_list %}
78+
{% if child.parent == page.title and child.title != page.title %}
79+
<li>
80+
<ahref="{{ child.url | absolute_url }}">{{ child.title }}</a>
81+
</li>
82+
{% endif %}
83+
{% endfor %}
84+
</ul>
85+
{% endif %}
86+
87+
{% if site.footer_content != nil %}
88+
<hr>
89+
<footerrole="contentinfo">
90+
<pclass="text-small text-grey-dk-000 mb-0">{{ site.footer_content }}</p>
91+
</footer>
92+
{% endif %}
93+
94+
</div>
95+
</div>
96+
</div>
97+
</div>
98+
99+
</body>
100+
</html>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp