forked from ictact-coop/firstaccounting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·87 lines (82 loc) · 3.33 KB
/
index.html
File metadata and controls
executable file
·87 lines (82 loc) · 3.33 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
80
81
82
83
84
85
86
87
---
layout: default
main_image: screenshot.png
about:
title: |
소규모 NPO의 자금관리와 사업 실적분석을 위한
관리회계시스템입니다.
description: |
처음 액셀 회계는 단체 운영을 위해 사용되는 주요 지불수단인 현금, 통장, 카드의 사용 내역을
그 사용 용도별 및 사용처별로 분류하는 한편, 지속 사업과 프로젝트성 사업별로 또한 분류 관리함으로서
사업별 수지를 상시 파악토록 하여 단체의 신속한 의사결정 자료로 활용할 수 있을 뿐 아니라,
단체의 지출결의 절차 또한 관리할 수 있도록 구성되어 있습니다.
features:
- icon: fas fa-clipboard-list
title: 프로젝트 관리
description: 프로젝트별로 예산과 결산, 원장을 관리할 수 있습니다. 보조금 사업이 많은 비영리조직에서 가장 많이 요청했던 기능입니다.
- icon: far fa-credit-card
title: 통장, 카드 관리
description: 사용 중인 통장과 카드를 등록해서 자금 흐름을 쉽게 파악할 수 있습니다. 1.0에서는 현금과 통장의 총잔액만 알 수 있었습니다.
- icon: fas fa-battery-full
title: 성능과 안정성 향상
description: 내부를 최적화하여 더 많은 데이터를 빠르고 안정적으로 다룰 수 있게 됐습니다.<br><br>
contributors:
- title: 공동체IT사회적협동조합
link: http://ictact.kr
- title: 서울시NPO지원센터
link: http://www.seoulnpocenter.kr/
- title: 비영리IT지원센터
link: http://www.npoit.kr/
---
<section class="hero is-bold is-light">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title is-1 is-spaced">누구나 처음 시작하는 회계!</h1>
<h2 class="subtitle is-4">{{ site.slogan }}</h2>
<h2 class="subtitle is-4">{{ site.title }}</h2>
<a href="/" class="button is-black is-large"><i class="fas fa-arrow-alt-circle-down"></i> 내려받기</a>
</div>
</div>
</section>
<section class="section screenshots">
<div class="container has-text-centered">
<div class="columns is-centered">
<div class="column is-two-thirds-tablet">
<figure class="image">
<img src="{{ '/assets/' | append: page.main_image | relative_url }}">
</figure>
</div>
</div>
</div>
</section>
<section class="section about">
<div class="container has-text-centered">
<p class="is-size-4">{{ page.about.title | newline_to_br }}</p>
<p> </p>
<p>{{ page.about.description | newline_to_br }}</p>
</div>
</section>
<section class="section features">
<div class="container has-text-centered">
<div class="columns">
{% for feature in page.features %}
<div class="column">
<div class="box">
<h2 class="title is-4">
<i class="{{ feature.icon }}"></i>
{{ feature.title }}
</h2>
<p class="has-text-left is-size-5">
{{ feature.description }}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="section contributors">
<div class="container has-text-centered is-size-5">
<p class="has-text-black">함께 만들었습니다<br>공동체IT사회적협동조합 / 서울시NPO지원센터 / 비영리IT지원센터</p>
</div>
</section>