Skip to content

Commit 0301134

Browse files
authored
Merge pull request #100 from undpindia/feature-mobileview
Feature mobileview
2 parents 1b6cda8 + 6b9e33f commit 0301134

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+2651
-107
lines changed

.anima/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cache

src/documentation/.anima/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cache

src/documentation/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor

src/documentation/404.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: default
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

src/documentation/Gemfile

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
gem "jekyll", "~> 4.3.3"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15+
# gem "github-pages", group: :jekyll_plugins
16+
# If you have any plugins, put them here!
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
gem 'jekyll-seo-tag', '2.8.0'
20+
gem 'jekyll-sitemap', '1.4.0'
21+
end
22+
23+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
24+
# and associated library.
25+
platforms :mingw, :x64_mingw, :mswin, :jruby do
26+
gem "tzinfo", ">= 1", "< 3"
27+
gem "tzinfo-data"
28+
end
29+
30+
# Performance-booster for watching directories on Windows
31+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
32+
33+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
34+
# do not have a Java counterpart.
35+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

src/documentation/Gemfile.lock

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.6)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.2.3)
8+
em-websocket (0.5.3)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0)
11+
eventmachine (1.2.7)
12+
ffi (1.16.3-x64-mingw-ucrt)
13+
forwardable-extended (2.6.0)
14+
google-protobuf (4.26.1-x64-mingw-ucrt)
15+
rake (>= 13)
16+
http_parser.rb (0.8.0)
17+
i18n (1.14.5)
18+
concurrent-ruby (~> 1.0)
19+
jekyll (4.3.3)
20+
addressable (~> 2.4)
21+
colorator (~> 1.0)
22+
em-websocket (~> 0.5)
23+
i18n (~> 1.0)
24+
jekyll-sass-converter (>= 2.0, < 4.0)
25+
jekyll-watch (~> 2.0)
26+
kramdown (~> 2.3, >= 2.3.1)
27+
kramdown-parser-gfm (~> 1.0)
28+
liquid (~> 4.0)
29+
mercenary (>= 0.3.6, < 0.5)
30+
pathutil (~> 0.9)
31+
rouge (>= 3.0, < 5.0)
32+
safe_yaml (~> 1.0)
33+
terminal-table (>= 1.8, < 4.0)
34+
webrick (~> 1.7)
35+
jekyll-feed (0.17.0)
36+
jekyll (>= 3.7, < 5.0)
37+
jekyll-sass-converter (3.0.0)
38+
sass-embedded (~> 1.54)
39+
jekyll-seo-tag (2.8.0)
40+
jekyll (>= 3.8, < 5.0)
41+
jekyll-sitemap (1.4.0)
42+
jekyll (>= 3.7, < 5.0)
43+
jekyll-watch (2.2.1)
44+
listen (~> 3.0)
45+
kramdown (2.4.0)
46+
rexml
47+
kramdown-parser-gfm (1.1.0)
48+
kramdown (~> 2.0)
49+
liquid (4.0.4)
50+
listen (3.9.0)
51+
rb-fsevent (~> 0.10, >= 0.10.3)
52+
rb-inotify (~> 0.9, >= 0.9.10)
53+
mercenary (0.4.0)
54+
minima (2.5.1)
55+
jekyll (>= 3.5, < 5.0)
56+
jekyll-feed (~> 0.9)
57+
jekyll-seo-tag (~> 2.1)
58+
pathutil (0.16.2)
59+
forwardable-extended (~> 2.6)
60+
public_suffix (5.0.5)
61+
rake (13.2.1)
62+
rb-fsevent (0.11.2)
63+
rb-inotify (0.10.1)
64+
ffi (~> 1.0)
65+
rexml (3.2.6)
66+
rouge (4.2.1)
67+
safe_yaml (1.0.5)
68+
sass-embedded (1.77.1-x64-mingw-ucrt)
69+
google-protobuf (>= 3.25, < 5.0)
70+
terminal-table (3.0.2)
71+
unicode-display_width (>= 1.1.1, < 3)
72+
tzinfo (2.0.6)
73+
concurrent-ruby (~> 1.0)
74+
tzinfo-data (1.2024.1)
75+
tzinfo (>= 1.0.0)
76+
unicode-display_width (2.5.0)
77+
wdm (0.1.1)
78+
webrick (1.8.1)
79+
80+
PLATFORMS
81+
x64-mingw-ucrt
82+
83+
DEPENDENCIES
84+
http_parser.rb (~> 0.6.0)
85+
jekyll (~> 4.3.3)
86+
jekyll-feed (~> 0.12)
87+
jekyll-seo-tag (= 2.8.0)
88+
jekyll-sitemap (= 1.4.0)
89+
minima (~> 2.5)
90+
tzinfo (>= 1, < 3)
91+
tzinfo-data
92+
wdm (~> 0.1.1)
93+
94+
BUNDLED WITH
95+
2.5.10

src/documentation/_config.yml

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# ----
2+
# Site
3+
4+
title: DiCRA Documents
5+
url:
6+
baseurl: /dicra-documents
7+
google_analytics_key:
8+
show_full_navigation: true
9+
10+
logo:
11+
description:
12+
author:
13+
name:
14+
email:
15+
twitter: # twitter username without the @ symbol
16+
social:
17+
name: DiCRA Documents
18+
links:
19+
20+
21+
# -----
22+
# Build
23+
24+
timezone: Etc/UTC
25+
26+
permalink: pretty
27+
28+
plugins:
29+
- jekyll-sitemap
30+
- jekyll-seo-tag
31+
- jekyll-feed
32+
33+
exclude:
34+
- Gemfile
35+
- Gemfile.lock
36+
- README.md
37+
- LICENCE
38+
39+
collections:
40+
docs:
41+
title: Documentation
42+
permalink: /:path/
43+
output: true
44+
45+
defaults:
46+
-
47+
scope:
48+
path: ""
49+
values:
50+
layout: default
51+
-
52+
scope:
53+
path: ""
54+
type: "docs"
55+
values:
56+
seo:
57+
type: Article
58+
_comments:
59+
category: Group navigation links with this field
60+
order: Used to sort links in the navigation
61+
_options:
62+
content:
63+
width: 800
64+
height: 2000
65+
-
66+
scope:
67+
path: ""
68+
type: "docs"
69+
values:
70+
_comments:
71+
type: Marks the impact of this release
72+
73+
# -----------
74+
# CloudCannon
75+
76+
types:
77+
- minor
78+
- major
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Site Analytics
3+
category: How to Use
4+
order: 6
5+
---
6+
In the Analytics page, the information related to website traffic like New Users,
7+
Sessions, View, Visitors Geography and Engagements etc. are available.
8+
9+
10+
![Image]({{ site.baseurl }}/images/image15.png)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: Downloads
3+
category: How to Use
4+
order: 5
5+
---
6+
### You will be able to download all the layers used in the portal.
7+
8+
![Image]({{ site.baseurl }}/images/image13.png)
9+
![Image]({{ site.baseurl }}/images/image14.png)
10+
11+
#### Steps to download a layer
12+
13+
14+
1. Select the layer
15+
2. Select the date – applicable only if the layer has temporal data
16+
3. Select type - Raster / Vector
17+
4. Select boundary – applicable only if the user selects vector as the layer type.
18+
5. Enter Name – User who downloads the data
19+
6. Enter Email ID
20+
7. Select Usage Type – Commercial / Non-Commercial
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: Getting Started
3+
category: How to Use
4+
order: 2
5+
---
6+
7+
1. Open any installed browser on your desktop
8+
2. Go to https://dicra.undp.org.in/
9+
3. You will enter the Portal and dashboard will appear.
10+
Sync your Facebook contacts with ChatApp. Any of your Facebook friends with ChatApp accounts are automatically added to your contact list!
11+
12+
![Image]({{ site.baseurl }}/images/image1.png)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!-- ---
2+
title: Help
3+
category: How to Use
4+
order: 6
5+
---
6+
The help section has all the project related information and user guides.
7+
8+
9+
![Image]({{ site.baseurl }}/images/image17.png) -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Introduction
3+
category: How to Use
4+
order: 1
5+
---
6+
7+
Data in Climate Resilient Agriculture (DiCRA) is a collaborative digital public good
8+
which provides open access to key geospatial datasets pertinent to climate resilient
9+
agriculture. These datasets are curated and validated through collaborative efforts of
10+
hundreds of data scientists and citizen scientists across the world. The pattern
11+
detection and data insights emerging from DiCRA are aimed towards strengthening
12+
evidence-driven policy making for climate resilient food systems. DiCRA is guided by
13+
the digital public good principles of open access, open software, open code, and open
14+
APIs.
15+
16+
The platform is facilitated by Government of Telangana and UNDP, in collaboration with
17+
Zero Huger Lab (Netherlands), JADS (Netherlands), ICRISAT, PJTSAU, and RICH. It is
18+
part of UNDP’s ‘Data for Policy’ initiative supported by Rockefeller Foundation.

0 commit comments

Comments
 (0)