forked from fushenghua/GetHosp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1b1a68
commit d8a7665
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#GetHosp | ||
一个有情怀的GetHosp | ||
|
||
向天朝优秀的程序员致敬 | ||
|
||
##使用 | ||
* [点击使用](http://fushenghua.github.io/GetHosp) | ||
|
||
|
||
##PR | ||
欢迎大家一起PR,维护这个项目,并且不会有任何商业用途。 | ||
|
||
##感慨 | ||
先是看了微博传的海口越秀区殴打视频,又看魏则西事件,感觉社会越来越可怕,所以发起一个有情怀的项目。 | ||
|
||
##另外一个 | ||
* [莆田系医院名单](https://github.com/langhua9527/BlackheartedHospital/blob/master/README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<head> | ||
<base href="http://fushenghua.github.io/GetHosp"> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title> | ||
<meta name="viewport" content="width=device-width"> | ||
<meta name="description" content="{{ site.description }}"> | ||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> | ||
|
||
<!-- Custom CSS --> | ||
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}"> | ||
|
||
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
layout: null | ||
--- | ||
{ | ||
"code" : 0 , | ||
"data" : [ | ||
{% for post in site.posts %} | ||
{ | ||
"title" : "{{ post.title }} - {% for tag in post.tags %}{% if forloop.rindex != 1 %}{{ tag }}_{% else %}{{ tag }}{% endif %}{% endfor %}", | ||
"url" : "{{ site.url }}{{ post.url }}" | ||
} | ||
{% if forloop.rindex != 1 %} | ||
, | ||
{% endif %} | ||
{% endfor %} | ||
] | ||
} |