Skip to content

Commit 0ad0b5f

Browse files
committed
added carlae page for docs
1 parent 78897c0 commit 0ad0b5f

34 files changed

+796
-3451
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Hierarchical Edge Type Analysis. An algorithm for detecting edge types using common neighbor concept.
66

7-
This is a rewritten of: https://github.com/canslab1/Identification-Algorithm/ , into convenient function that take NetworkX Graph objects, and to be compatible with Python3.
7+
This is a rewritten of: [https://github.com/canslab1/Identification-Algorithm/](https://github.com/canslab1/Identification-Algorithm/) , into convenient function that take NetworkX Graph objects, and to be compatible with Python3.
88

99
## Install
1010

@@ -72,7 +72,8 @@ Many network researchers use intuitive or basic definitions when discussing the
7272
Keywords: Network topology, Hierarchy of links, Common neighbor concept, Fingerprint analysis, Hierarchical community partition, Edge type analysis
7373

7474

75-
article url: https://www.sciencedirect.com/science/article/pii/S0378437119306375
75+
article url: [https://www.sciencedirect.com/science/article/pii/S0378437119306375](https://www.sciencedirect.com/science/article/pii/S0378437119306375)
7676

7777
cite this as:
78-
Huang C. Y., Chin, W. C. B., Fu, Y. H., & Tsai, Y. S. (in press) Beyond bond links in complex networks: Local bridges, global bridges and silk links. Physica A: Statistical Mechanics and its Applications. DOI: https://doi.org/10.1016/j.physa.2019.04.263 .
78+
Huang C. Y., Chin, W. C. B., Fu, Y. H., & Tsai, Y. S. (in press) Beyond bond links in complex networks: Local bridges, global bridges and silk links. Physica A: Statistical Mechanics and its Applications.
79+
DOI: [https://doi.org/10.1016/j.physa.2019.04.263](https://doi.org/10.1016/j.physa.2019.04.263) .

carlae.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ three_desc: [hierarchy, network, and connectivity]
1111
concept_color: '#18d17b'
1212
project_url: https://github.com/wcchin/HETA
1313
project_url_title: go to project page
14-
theme: skeleton
14+
theme: minimal
1515
---
+39-121
Original file line numberDiff line numberDiff line change
@@ -1,122 +1,40 @@
1-
<!DOCTYPE html>
2-
<html lang="en"><head>
3-
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
4-
5-
<!-- Basic Page Needs
6-
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
7-
<meta charset="UTF-8">
8-
<title>{{ top_title }}</title>
9-
<meta name="description" content="{{ description }}">
10-
<meta name="author" content="{{ author }}">
11-
12-
<!-- Mobile Specific Metas
13-
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
14-
<meta name="viewport" content="width=device-width, initial-scale=1">
15-
16-
<!-- FONT
17-
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
18-
<link href="css/css.css" rel="stylesheet" type="text/css">
19-
20-
<!-- CSS
21-
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
22-
<link rel="stylesheet" href="css/normalize.css">
23-
<link rel="stylesheet" href="css/skeleton.css">
24-
<link rel="stylesheet" href="css/custom.css">
25-
<!--<link rel="stylesheet" href="css/typicons/typicons.min.css">-->
26-
<!--<link rel="stylesheet" href="css/fontawesome/css/fontawesome.min.css">
27-
<link rel="stylesheet" href="css/fontawesome/css/brands.min.css">
28-
<link rel="stylesheet" href="css/fontawesome/css/solid.min.css">-->
29-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/src/font/typicons.min.css">
30-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
31-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/brands.min.css">
32-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/solid.min.css">
33-
34-
<!-- Scripts
35-
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
36-
<script type="text/javascript" async="" src="js/ga.js"></script><script id="twitter-wjs" src="js/widgets.js"></script><script src="js/jquery.js"></script>
37-
<!--<script src="js/run_prettify.html"></script>-->
38-
<link rel="stylesheet" href="css/github-prettify-theme.css">
39-
<script src="js/site.js"></script>
40-
41-
<!-- Favicon
42-
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
43-
<link rel="icon" type="image/png" href="http://getskeleton.com/dist/images/favicon.png">
44-
45-
<script charset="utf-8" src="js/button.js"></script></head>
46-
<body class="code-snippets-visible">
47-
48-
<!-- Primary Page Layout
49-
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
50-
<div class="container">
51-
<section class="header">
52-
<h1 class="title"> {{ project_name }} </h1>
53-
{% if not( smart_title is none) %}<h2 class="title"> {{ smart_title }} </h2>{% endif %}
54-
{% if not( project_url is none) %}
55-
<a class="button button-primary" href="{{ project_url }}" style="background-color:{{ concept_color }};" > {{ project_url_title }} </a>
56-
{% endif %}
57-
{% if not (three_concepts is none) %}
58-
<div class="value-props row">
59-
{% for i in range(three_concepts|length) %}
60-
<div class="{{ concept_width }} columns value-prop">
61-
<h1 style="color:{{ concept_color }};">{{ three_concepts[i] }}</h1>
62-
{% if not (three_desc is none) %}{{ three_desc[i] }}{% endif %}
63-
</div>
64-
{% endfor %}
65-
</div>
66-
{% endif %}
67-
</section>
68-
69-
{% if menus|length>0 %}
70-
<div class="navbar-spacer"></div>
71-
<nav class="navbar">
72-
<div class="container">
73-
<ul class="navbar-list">
74-
<!--<li class="navbar-item"><a class="navbar-link" href="#"><large>{{ project_name }}</large></a></li>-->
75-
{% for menu in menus %}
76-
<li class="navbar-item">
77-
<a class="navbar-link" href="#" data-popover="#codeNavPopover{{ menu[0][0] }}">{{ menu[0][1] }}</a>
78-
<div id="codeNavPopover{{ menu[0][0] }}" class="popover">
79-
<ul class="popover-list">
80-
<li class="popover-item">
81-
<a class="popover-link" href="#{{ menu[0][0] }}">{{ menu[0][1] }}</a>
82-
</li>
83-
{% for ide, ite in menu[1] %}
84-
<li class="popover-item">
85-
<a class="popover-link" href="#{{ ide }}">{{ ite }}</a>
86-
</li>
87-
{% endfor %}
88-
</ul>
89-
</div>
90-
</li>
91-
{% endfor %}
92-
</ul>
93-
</div>
94-
</nav>
95-
{% endif %}
96-
97-
<!-- main text area -->
98-
<div class="docs-section" id="intro">
99-
{{ content }}
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
<title>{{ top_title }}</title>
7+
8+
<link rel="stylesheet" href="css/styles.css">
9+
<link rel="stylesheet" href="css/pygment_trac.css">
10+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/src/font/typicons.min.css">
11+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
12+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/brands.min.css">
13+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/solid.min.css">
14+
<meta name="viewport" content="width=device-width">
15+
<!--[if lt IE 9]>
16+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
17+
<![endif]-->
18+
</head>
19+
<body>
20+
<div class="wrapper">
21+
<header>
22+
<h1>{{ project_name }}</h1>
23+
<p>{% if not( smart_title is none) %}<h2 class="title"> {{ smart_title }} </h2>{% endif %}</p>
24+
{% if not( project_url is none) %}
25+
<p class="view"><a href="{{ project_url }}">{{ project_url_title }} <small>{{ author }}/{{ project_name }}</small></a></p>
26+
{% endif %}
27+
</header>
28+
<section>
29+
30+
{{ content }}
31+
32+
</section>
33+
<footer>
34+
<p> {{ author }} is working with a lot of passion on <a href="{{ project_url }}">{{ project_name }}</a>.</p>
35+
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
36+
</footer>
10037
</div>
101-
</div>
102-
103-
{% if google_analytics is not none %}
104-
<!-- Google Analytics -->
105-
<script type="text/javascript">
106-
107-
var _gaq = _gaq || [];
108-
_gaq.push(['_setAccount', {{ google_analytics }}]);
109-
_gaq.push(['_trackPageview']);
110-
111-
(function() {
112-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
113-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
114-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
115-
})();
116-
117-
</script>
118-
{% endif %}
119-
120-
<!-- End Document
121-
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
122-
</body></html>
38+
<script src="js/scale.fix.js"></script>
39+
</body>
40+
</html>

carlae_page/theme/css/css.css

-48
This file was deleted.

0 commit comments

Comments
 (0)