forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopml.phtml
More file actions
42 lines (36 loc) · 1.62 KB
/
opml.phtml
File metadata and controls
42 lines (36 loc) · 1.62 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
<!doctype html>
<head>
<base href="<?PHP echo $this->base; ?>" />
<meta charset="utf-8">
<title>selfoss</title>
<meta name="description" content="selfoss">
<meta name="author" content="Tobias Zeising">
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<!-- Place favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- all css definitions -->
<link rel="stylesheet" href="all.css">
</head>
<body id="opmlbody">
<form method="post" enctype="multipart/form-data">
<ul id="opml">
<li><h1>Upload an OPML File</h1></li>
<li>
<p>
Coming from Google Reader? Use <a href='http://www.google.com/reader/subscriptions/export'>Google Reader export</a> to get
your Google Reader subscriptions into a .xml file.
</p>
</li>
<?php
if(isset($this->msg))
echo '<li class="msg '.$this->msgclass.'"><p>'.$this->msg.'</p><li>';
?>
<li class="center"><label>Opml.xml:</label> <input type="file" name="opml" /></li>
<li class="button"><label> </label><input type="submit" value="Deliver my OPML!" /></li>
</ul>
</form>
<script src="all.js"></script>
</body>
</html>