Skip to content

Commit e5fcb93

Browse files
Merge pull request #169 from waqasm78/master
Added Documentation
2 parents 730463b + cd5df15 commit e5fcb93

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+2429
-24
lines changed

docs/404.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
permalink: /404.html
3+
---
4+
5+
<div style="margin-top: 60px;"></div>
6+
Oops! The page has moved, or the link is broken.
7+
8+
Let us know how you landed on this page, and we will try to fix the link: <a href="mailto:info@zzzprojects.com">info@zzzprojects.com</a>
9+
10+
Go to <a href="http://graph-diff.net/">Home</a>

docs/_config.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
port: 4004
2-
highlighter: rouge
3-
gems:
4-
- jekyll-sitemap
5-
ga: "UA-55584370-6"
6-
7-
includes:
8-
- _includes_custom
9-
101
defaults:
112
-
123
scope:
@@ -17,5 +8,4 @@ defaults:
178
scope:
189
path: ""
1910
type: "pages"
20-
values:
21-
last_modified_at: "2018-04-11"
11+
values:

docs/_data/meta.csv

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
permalink,title,meta-description,meta-keywords,h1,h2,nagivation,template
2+
index,Learn how to use GraphDiff with Tutorials & Examples using C# syntax.,Learn how to use GraphDiff with Tutorials & Examples using C# syntax.,,,,,full
3+
/404.html,Page Moved,Page Moved,,Page Moved,,,container-h1
4+
download,Download,Download,,Download,,no,full-h1
5+
contact-us,Contact Us,Contact Us,,Contact Us,,no,full-h1
6+
tutorials,Tutorials,Tutorials,,Tutorials,,,container-h1
7+
overview,Overview,Overview,,Overview,,,
8+
requirements,Requirements,Requirements,,Requirements,,,
9+
installing,Installing,Installing,,Installing,,,
10+
upgrading,Upgrading,Upgrading,,Upgrading,,,
11+
detach-owned-entity,Detach Owned Entity,Detach Owned Entity,,Detach Owned Entity,,,
12+
detach-single-entity,Detach Single Entity,Detach Single Entity,,Detach Single Entity,,,
13+
detach-aggregated-entity,Detach Aggregated Entity,Detach Aggregated Entity,,Detach Aggregated Entity,,,
14+
detach-associated-entity,Detach Associated Entity,Detach Associated Entity,,Detach Associated Entity,,,
15+
api,API,API,,API,,,
16+
faq,FAQ,FAQ,,FAQ,,,
17+
issue-tracker,Issue Tracker,Issue Tracker,,Issue Tracker,,,
18+
faq-general,FAQ - General,FAQ - General,,FAQ - General,,,
19+
faq-installation,FAQ - Installation,FAQ - Installation,,FAQ - Installation,,,
20+
problems,Problems,Problems,,Problems,,,
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{% if page.path contains "tutorials.md" %}
2+
{% assign is_context_home = true; %}
3+
{% assign is_context_home_css_active = "active"; %}
4+
{% elsif page.path contains "/tutorials/" %}
5+
{% assign is_context_tutorials = true; %}
6+
{% assign is_context_tutorials_css_active = "active"; %}
7+
{% elsif page.path contains "/api/" %}
8+
{% assign is_context_api = true; %}
9+
{% assign is_context_api_css_active = "active"; %}
10+
{% elsif page.path contains "/faq/" %}
11+
{% assign is_context_faq = true; %}
12+
{% assign is_context_faq_css_active = "active"; %}
13+
{% elsif page.path contains "/problems/" %}
14+
{% assign is_context_problems = true; %}
15+
{% assign is_context_problems_css_active = "active"; %}
16+
{% endif %}
17+
{% for num in (0..site.data.meta.size) %}
18+
{% if site.data.meta[num].permalink == page.permalink %}
19+
{% assign meta_index = num %}
20+
{% endif %}
21+
{% endfor %}

docs/_includes/aside.html

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{% if page.path contains "/tutorials/" %}
2+
<div class="card card-layout-z1">
3+
<div class="card-header">
4+
<h2>Tutorials</h2>
5+
</div>
6+
<div class="card-body">
7+
8+
<h3>Getting Started</h3>
9+
<ul>
10+
<li><a href="{{ site.github.url }}/overview">Overview</a></li>
11+
<li><a href="{{ site.github.url }}/requirements">Requirements</a></li>
12+
<li><a href="{{ site.github.url }}/installing">Installing</a></li>
13+
<li><a href="{{ site.github.url }}/upgrading">Upgrading</a></li>
14+
</ul>
15+
16+
<h4>Tutorials</h4>
17+
<ul>
18+
<li><a href="{{ site.github.url }}/detach-single-entity">Detach Single Entity</a></li>
19+
<li><a href="{{ site.github.url }}/detach-owned-entity">Detach Owned Entity</a></li>
20+
<li><a href="{{ site.github.url }}/detach-associated-entity">Detach Associated Entity</a></li>
21+
<li><a href="{{ site.github.url }}/detach-aggregated-entity">Detach Aggregated Entity</a></li>
22+
</ul>
23+
24+
</div>
25+
</div>
26+
27+
{% elsif page.path contains "/api/" %}
28+
29+
30+
{% elsif page.path contains "/articles/" %}
31+
<div class="card card-layout-z1">
32+
33+
</div>
34+
35+
{% elsif page.path contains "/faq/" %}
36+
<div class="card card-layout-z1">
37+
<div class="card-header">
38+
<h3>FAQ</h3>
39+
</div>
40+
<div class="card-body">
41+
42+
<h4>Getting Help</h4>
43+
<ul>
44+
<li><a href="{{ site.github.url }}/contact-us">Contact Us</a></li>
45+
<li><a href="{{ site.github.url }}/issue-tracker">Issue Tracker</a></li>
46+
</ul>
47+
48+
<h4>FAQ</h4>
49+
<ul>
50+
<li><a href="{{ site.github.url }}/faq-general">General</a></li>
51+
<li><a href="{{ site.github.url }}/faq-installation">Installation</a></li>
52+
</ul>
53+
54+
</div>
55+
</div>
56+
57+
{% elsif page.path contains "/problems/" %}
58+
59+
60+
{% endif %}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<a href="mailto:info@zzzprojects.com">info@zzzprojects.com</a>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div class="header-angle">
2+
<div class="top-triangle wow slideInRight"></div>
3+
<div class="header-angle-inner">
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
</div>
2+
<div class="bottom-triangle-outer">
3+
<div class="bottom-triangle wow slideInLeft"></div>
4+
</div>
5+
</div>

docs/_includes/site-footer.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<footer class="site-footer">
2+
<div class="fixed-bottom">
3+
<div class="container">
4+
<div class="row justify-content-between">
5+
<div class="col-6 footer-site-copyright">
6+
Copyright &copy; 2014 - 2017
7+
<a href="http://www.zzzprojects.com/">ZZZ Projects Inc.</a>
8+
All rights reserved
9+
</div>
10+
<div class="col-6 footer-site-social">
11+
<div class="float-right">
12+
<a href="https://www.facebook.com/zzzprojects" target="_blank"><i class="fa fa-facebook"></i></a>
13+
<a href="https://twitter.com/zzzprojects" target="_blank"><i class="fa fa-twitter"></i></a>
14+
<a href="https://plus.google.com/+Zzzprojects_NetSQL" target="_blank"><i class="fa fa-google-plus"></i></a>
15+
<a href="http://zzzprojects.us9.list-manage.com/subscribe?u=cecbc4775cf67bf1ff82018af&amp;id=4765ffa5f8" target="_blank"><i class="fa fa-newspaper-o"></i></a>
16+
</div>
17+
</div>
18+
</div>
19+
</div>
20+
</div>
21+
</footer>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<div class="nav-context">
2+
<nav class="container navbar navbar-dark navbar-expand-lg">
3+
<div class="collapse navbar-collapse">
4+
<ul class="navbar-nav">
5+
<li class="nav-item {{ site_header_nav_context_home_css }}">
6+
<a class="nav-link" href="{{ site.github.url }}/">
7+
<i class="fa fa-home" aria-hidden="true"></i>
8+
</a>
9+
</li>
10+
<li class="nav-item {{ is_context_tutorials_css_active }}">
11+
<a class="nav-link" href="{{ site.github.url }}/overview">Getting Started</a>
12+
</li>
13+
<li class="nav-item {{ is_context_faq_css_active }}">
14+
<a class="nav-link" href="{{ site.github.url }}/faq">FAQ</a>
15+
</li>
16+
</ul>
17+
</div>
18+
</nav>
19+
</div>

0 commit comments

Comments
 (0)