mirror of
https://github.com/cwinfo/envayasms.git
synced 2025-01-10 12:05:40 +00:00
add links to questions at top of faq page
This commit is contained in:
parent
62c9965238
commit
9a0b495abf
@ -1,9 +1,29 @@
|
|||||||
id: faq
|
id: faq
|
||||||
title: Frequently Asked Questions
|
title: Frequently Asked Questions
|
||||||
|
q_alternative: Instead of implementing a SMS gateway as an Android app, why not use X instead? (where X = Twilio, Tropo, Clickatell, FrontlineSMS, RapidSMS, Kannel, etc.)
|
||||||
|
q_phones: What phones are compatible with EnvayaSMS?
|
||||||
|
q_envaya_org: What is the relationship between EnvayaSMS and envaya.org?
|
||||||
|
q_kalsms: What is the relationship between EnvayaSMS and KalSMS?
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<h4>
|
<ul class='faq_links'>
|
||||||
Instead of implementing a SMS gateway as an Android app, why not use X instead? (where X = Twilio, Tropo, Clickatell, FrontlineSMS, RapidSMS, Kannel, etc.)
|
<li>
|
||||||
|
<a href='#q_alternative'>{{ this.q_alternative }}</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='#q_phones'>{{ this.q_phones }}</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='#q_envaya_org'>{{ this.q_envaya_org }}</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='#q_kalsms'>{{ this.q_kalsms }}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4 id='q_alternative'>
|
||||||
|
{{ this.q_alternative }}
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
@ -75,9 +95,7 @@ title: Frequently Asked Questions
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<h4>
|
<h4 id='q_phones'>{{ this.q_phones }}</h4>
|
||||||
What phones are compatible with EnvayaSMS?
|
|
||||||
</h4>
|
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
EnvayaSMS should work on any phone with Android 1.6 (Donut) or higher. As of 9/23/2011, over 579 different phone models are compatible with EnvayaSMS.
|
EnvayaSMS should work on any phone with Android 1.6 (Donut) or higher. As of 9/23/2011, over 579 different phone models are compatible with EnvayaSMS.
|
||||||
@ -102,7 +120,7 @@ In particular, you do not need to register for <a href='http://envaya.org'>envay
|
|||||||
For information about configuring a web server to connect to EnvayaSMS, see the <a href='serverapi.html'>API Reference</a> page.
|
For information about configuring a web server to connect to EnvayaSMS, see the <a href='serverapi.html'>API Reference</a> page.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h4>What is the relationship between EnvayaSMS and envaya.org?</h4>
|
<h4 id='q_envaya_org'>{{ this.q_envaya_org }}</h4>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
We originally developed EnvayaSMS to enable civil society organizations in East Africa to interact with
|
We originally developed EnvayaSMS to enable civil society organizations in East Africa to interact with
|
||||||
@ -118,7 +136,7 @@ Development of EnvayaSMS is currently led by the <a href='http://envaya.org'>env
|
|||||||
but anyone is welcome to contribute to improve it.
|
but anyone is welcome to contribute to improve it.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h4>What is the relationship between EnvayaSMS and KalSMS?</h4>
|
<h4 id='q_kalsms'>{{ this.q_kalsms }}</h4>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The source code for EnvayaSMS was originally based on <a href='https://github.com/niryariv/kalsms/'>KalSMS</a>, an open-source project
|
The source code for EnvayaSMS was originally based on <a href='https://github.com/niryariv/kalsms/'>KalSMS</a>, an open-source project
|
||||||
|
@ -86,3 +86,18 @@ img
|
|||||||
{
|
{
|
||||||
border:0px;
|
border:0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.faq_links li
|
||||||
|
{
|
||||||
|
padding-bottom:5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.faq_links a
|
||||||
|
{
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.faq_links a:hover
|
||||||
|
{
|
||||||
|
text-decoration:underline;
|
||||||
|
}
|
@ -39,7 +39,22 @@
|
|||||||
<h2>Frequently Asked Questions</h2>
|
<h2>Frequently Asked Questions</h2>
|
||||||
|
|
||||||
|
|
||||||
<h4>
|
<ul class='faq_links'>
|
||||||
|
<li>
|
||||||
|
<a href='#q_alternative'>Instead of implementing a SMS gateway as an Android app, why not use X instead? (where X = Twilio, Tropo, Clickatell, FrontlineSMS, RapidSMS, Kannel, etc.)</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='#q_phones'>What phones are compatible with EnvayaSMS?</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='#q_envaya_org'>What is the relationship between EnvayaSMS and envaya.org?</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='#q_kalsms'>What is the relationship between EnvayaSMS and KalSMS?</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h4 id='q_alternative'>
|
||||||
Instead of implementing a SMS gateway as an Android app, why not use X instead? (where X = Twilio, Tropo, Clickatell, FrontlineSMS, RapidSMS, Kannel, etc.)
|
Instead of implementing a SMS gateway as an Android app, why not use X instead? (where X = Twilio, Tropo, Clickatell, FrontlineSMS, RapidSMS, Kannel, etc.)
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
@ -112,9 +127,7 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<h4>
|
<h4 id='q_phones'>What phones are compatible with EnvayaSMS?</h4>
|
||||||
What phones are compatible with EnvayaSMS?
|
|
||||||
</h4>
|
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
EnvayaSMS should work on any phone with Android 1.6 (Donut) or higher. As of 9/23/2011, over 579 different phone models are compatible with EnvayaSMS.
|
EnvayaSMS should work on any phone with Android 1.6 (Donut) or higher. As of 9/23/2011, over 579 different phone models are compatible with EnvayaSMS.
|
||||||
@ -139,7 +152,7 @@ In particular, you do not need to register for <a href='http://envaya.org'>envay
|
|||||||
For information about configuring a web server to connect to EnvayaSMS, see the <a href='serverapi.html'>API Reference</a> page.
|
For information about configuring a web server to connect to EnvayaSMS, see the <a href='serverapi.html'>API Reference</a> page.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h4>What is the relationship between EnvayaSMS and envaya.org?</h4>
|
<h4 id='q_envaya_org'>What is the relationship between EnvayaSMS and envaya.org?</h4>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
We originally developed EnvayaSMS to enable civil society organizations in East Africa to interact with
|
We originally developed EnvayaSMS to enable civil society organizations in East Africa to interact with
|
||||||
@ -155,7 +168,7 @@ Development of EnvayaSMS is currently led by the <a href='http://envaya.org'>env
|
|||||||
but anyone is welcome to contribute to improve it.
|
but anyone is welcome to contribute to improve it.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h4>What is the relationship between EnvayaSMS and KalSMS?</h4>
|
<h4 id='q_kalsms'>What is the relationship between EnvayaSMS and KalSMS?</h4>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The source code for EnvayaSMS was originally based on <a href='https://github.com/niryariv/kalsms/'>KalSMS</a>, an open-source project
|
The source code for EnvayaSMS was originally based on <a href='https://github.com/niryariv/kalsms/'>KalSMS</a>, an open-source project
|
||||||
|
@ -86,3 +86,18 @@ img
|
|||||||
{
|
{
|
||||||
border:0px;
|
border:0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.faq_links li
|
||||||
|
{
|
||||||
|
padding-bottom:5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.faq_links a
|
||||||
|
{
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.faq_links a:hover
|
||||||
|
{
|
||||||
|
text-decoration:underline;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user