-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFastCatalog.html
More file actions
80 lines (68 loc) · 2.4 KB
/
FastCatalog.html
File metadata and controls
80 lines (68 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
title: Fast Catalog
tagline: Project Backstage
header: Fast Catalog
category: Fast Catalog
group: navigation
---
<div class="row">
<div class="col-md-12">
<h2><img src="http://icons.iconarchive.com/icons/custom-icon-design/flag-3/32/United-Kingdom-flag-icon.png"></img> Abstract</h2>
<div class="col-md-12">
These few articles born to share some thoughts about common functionality in e-commerce: multi-attribute catalog search. In NoSQL.
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Contents</h2>
{% assign myArray = finalSummary | split: "|" | sort %}
<ul style="list-style-type: none;">
{% for node in myArray %}
{% assign summaryLine = node | split: "," | sort %}
{% for prop in summaryLine %}
{% assign keyval = prop | split: ":" %}
{% if keyval[0] == 'title' %}
{% assign title = keyval[1] %}
{% endif %}
{% if keyval[0] == 'url' %}
{% assign url = keyval[1] %}
{% endif %}
{% endfor %}
{% if page.url == url %}
<li class="active"><a href="{{ BASE_PATH }}{{url}}">{{title}}</a></li>
{% else %}
<li><a href="{{ BASE_PATH }}{{url}}">{{title}}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<h2>Technologies</h2>
<ul>
<li>UI: <a href="https://material.angularjs.org/latest/#/" target="_blank">Angular Material 0.10.0</a></li>
<li>Front-end: <a href="https://angularjs.org/" target="_blank">Angular.js 1.3.15</a></li>
<li>Back-end: <a href="http://www.asp.net/vnext/overview/aspnet-web-api" target="_blank">.NET Web Api 2.0</a></li>
<li>Database: SQL Server 2008 R2 +, <a href="https://www.mongodb.org/" target="_blank">MongoDB 3.0.3</a>, <a href="https://www.elastic.co/" target="_blank">ElasticSearch 1.5</a></li>
<li>Inversion of Control: <a href="http://docs.castleproject.org/Windsor.MainPage.ashx" target="_blank">Castle Windsor</a></li>
<li>VCS: <a href="http://git-scm.com/" target="_blank">Git</a></li>
</ul>
<h2>Repositories</h2>
<ul>
<li><a href="https://github.com/williamverdolini/FastCatalog" target="blank">Fast Catalog</a>.</li>
</ul>
<div class="row">
<div class="col-md-12">
<h2>Period</h2>
<div class="col-md-12">
June 2015 - August 2015
</div>
</div>
</div>
{% comment %}
<ul>
{% assign pages_list = site.pages %}
</ul>
Fast Catalog<br>
<p>{{pages_list}}</p>
{% endcomment %}