Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 39598
1
##############################################################################
2
#
3
# CoCalc: Collaborative Calculation in the Cloud
4
#
5
# Copyright (C) 2016 -- 2017, Sagemath Inc.
6
#
7
# This program is free software: you can redistribute it and/or modify
8
# it under the terms of the GNU General Public License as published by
9
# the Free Software Foundation, either version 3 of the License, or
10
# (at your option) any later version.
11
#
12
# This program is distributed in the hope that it will be useful,
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program. If not, see <http://www.gnu.org/licenses/>.
18
#
19
##############################################################################
20
21
{React, rclass, rtypes} = require('../smc-react')
22
{Panel} = require('react-bootstrap')
23
{Icon} = require('../r_misc')
24
25
exports.HelpBox = rclass
26
render: ->
27
<Panel header={<h4><Icon name='question-circle' /> Help</h4>}>
28
<span style={color:"#666"}>
29
<ul>
30
<li>
31
<a href="https://tutorial.cocalc.com/" target="_blank">
32
A tutorial for anyone wanting to use CoCalc for teaching
33
</a> (by Mike Croucher)
34
</li>
35
<li>
36
<a href="http://www.beezers.org/blog/bb/2015/09/grading-in-sagemathcloud/" target='_blank'>
37
Grading Courses <Icon name='external-link'/></a> (by Rob Beezer)
38
</li>
39
<li>
40
<a href="http://www.beezers.org/blog/bb/2016/01/pennies-a-day-for-sagemathcloud/" target="_blank">
41
Course Plans and teaching experiences <Icon name='external-link'/></a> (by Rob Beezer)
42
</li>
43
<li>
44
<a href="http://blog.ouseful.info/2015/11/24/course-management-and-collaborative-jupyter-notebooks-via-sagemathcloud/" target='_blank'>
45
Course Management and collaborative Jupyter Notebooks <Icon name='external-link'/></a> (by Tony Hirst)
46
</li>
47
</ul>
48
</span>
49
</Panel>
50