-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
35 lines (29 loc) · 6.83 KB
/
index.html
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
<!DOCTYPE html>
<html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1"><meta name=viewport content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=2"><title>About - MixERP</title><link href=//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.7/styles/default.min.css type=text/css rel=stylesheet><link href=//cdn.rawgit.com/noelboss/featherlight/1.2.3/release/featherlight.min.css type=text/css rel=stylesheet title="Featherlight Styles"><link href=/docs/assets/styles.min.css rel=stylesheet><link href="//fonts.googleapis.com/css?family=Open+Sans:300,400" rel=stylesheet type=text/css></head><body><div class="ui page grid" id=brand><div class="sixteen wide column"><a href=/index.html class><img title=MixERP alt=MixERP class=logo src=/docs/assets/images/mixerp-logo.png></a></div></div><div class="ui page stackable grid" id=story><div class="sixteen wide column"><h1>About - MixERP</h1><p>MixERP is a feature-rich, and easy to use ASP.net open source ERP Solution. MixERP is a <strong>GNU/GPL based open source and free software</strong>.</p><h2>Quickstart Guide (Database)</h2><ul><li><a href=docs/developer/quickstart/part-1-installing-database.html>Part 1: Installing Database</a></li><li><a href=docs/developer/quickstart/part-2-editing-db-configuration-file.html>Part 2: Editing DB Configuration</a></li></ul><h1>Next Steps</h1><p>I want to:</p><p><a class="ui basic blue button" href=http://chamlang.mixerp.org title="MixERP Demo" target=_blank><i class="ui heart icon"></i>view MixERP Demo </a> <a class="ui basic purple button" href=docs/user-guide/index.html title="MixERP User Guide"><i class="ui student icon"></i>read MixERP manual </a> <a class="ui basic pink button" href=docs/admin.html title="MixERP Administration Guide"><i class="ui cloud icon"></i>install MixERP </a> <a class="ui basic olive button" href=docs/developer/index.html title="MixERP Developer Guide"><i class="ui code icon"></i>develop MixERP </a></p></div><div class="social sharing bpad24"><div class="ui grey huge header"> Share this page </div><div class="icons vpad8"><a target=_blank href="https://www.facebook.com/sharer/sharer.php?u={url}" title="Share this on Facebook"><i class="circular inverted blue large facebook icon"></i></a><a target=_blank href="http://twitter.com/share?text={tweet}&url={url}&hashtags=#mixerp" title="Tweet this link"><i class="circular blue large twitter icon"></i></a><a target=_blank href="http://www.linkedin.com/shareArticle?mini=true&url={url}&title=About - MixERP" title="Share this on LinkedIn"><i class="circular inverted blue large linkedin icon"></i></a><a target=_blank href="https://plus.google.com/share?url={url}" title="Share this on Google+"><i class="circular inverted red large google plus icon"></i></a><a target=_blank href="http://www.reddit.com/submit?url={url}" title="Share this on Reddit"><i class="circular large reddit icon"></i></a><a target=_blank href="http://pinterest.com/pin/create/button/?url={url}&description=About - MixERP" title="Share this on Pinterest"><i class="circular inverted red large pinterest icon"></i></a><a target=_blank href="http://www.stumbleupon.com/badge/?url={url}" title="Share this on StumbleUpon"><i class="circular inverted red large stumbleupon icon"></i></a><a target=_blank href="mailto:?subject=About - MixERP&body={message}" title="Send this on email"><i class="circular inverted olive large mail icon"></i></a></div></div></div><footer class="ui stackable center aligned inverted divided equal height stackable page three column grid"><div class="footer-pad column"><div class="ui inverted dividing header"><i class="code icon"></i> About MixERP </div><p> MixERP is an open source and free ERP software that provides a suite of useful modules to help you manage your day to day business activities, including but not limited to, human resource management, payroll, sales, purchases, inventory management, finance, customer relationship management, manufacturing, and back-office. Developed with love by your friends at MixERP Inc. </p></div><div class="footer-pad column"><div class="ui inverted dividing header"><i class="checkmark icon"></i> Documentation & License </div><p> Some sections in this documentation site are missing. This site is a <a href=index.html#community.md> community effort </a> and work in progress. </p><p> This work is licensed under a <a href=http://creativecommons.org/licenses/by-sa/4.0/ rel=license> Creative Commons Attribution-ShareAlike 4.0 International License </a> . </p></div><div class="left aligned footer-pad column"><div class="ui inverted dividing header"><i class="external icon"></i> Links </div><ul class=footer-links><li><a href=http://mixerp.org/ target=_blank> Project Website </a></li><li><a href=http://mixerp.org/forum target=_blank> Ask a Question </a></li><li><a href=https://github.com/mixerp/mixerp/issues target=_blank> Submit an Issue </a></li><li><a href=https://github.com/mixerp/mixerp/releases target=_blank> Download MixERP </a></li><li><a href=http://demo.mixerp.org/SignIn.aspx target=_blank> View the Demo </a></li><li><a href=https://www.linkedin.com/company/mixerp target=_blank>MixERP on LinkedIn</a></li><li><a href=https://www.facebook.com/mixerp.official/ target=_blank>MixERP on Facebook </a></li><li><a href=http://www.facebook.com/groups/183076085203506/ target=_blank> Facebook Group </a></li><li><a href=http://twitter.com/mixoferp/ target=_blank> Follow MixERP on Twitter </a></li><li style="list-style: none; display: inline"><ul></ul></li></ul></div></footer><script src=/docs/assets/script.js></script><script src=//cdn.rawgit.com/noelboss/featherlight/1.2.3/release/featherlight.min.js type=text/javascript charset=utf-8></script><script src=//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.7/highlight.min.js></script><script>
hljs.initHighlightingOnLoad();
var createLinkedImages = function () {
$("#story").find("img").each(function () {
var el = $(this);
var src = el.attr("src");
var anchor = $("<a/>");
anchor.prop("href", "#");
anchor.attr("data-featherlight", src);
el.wrap(anchor);
});
};
createLinkedImages();
$("table").addClass("ui celled striped table");
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-65607875-1', 'auto');
ga('send', 'pageview');
</script></body></html>