├── CNAME
├── src
├── less
│ ├── util.less
│ ├── global.less
│ ├── loading.less
│ ├── page.less
│ └── content.less
└── js
│ ├── misc-function.js
│ └── index.js
├── .gitignore
├── sitemap.xml
├── contribution.md
├── package.json
├── gulpfile.js
├── README.md
└── index.html
/CNAME:
--------------------------------------------------------------------------------
1 | legacy.awesomelists.top
2 |
--------------------------------------------------------------------------------
/src/less/util.less:
--------------------------------------------------------------------------------
1 | .content-hidden {
2 | display: none;
3 | }
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | data
2 | components
3 | node_modules
4 | .DS_Store
5 | *.log
6 | Gemfile.lock
7 |
--------------------------------------------------------------------------------
/src/less/global.less:
--------------------------------------------------------------------------------
1 | body, html {
2 | font-family: "Vollkorn", "Helvetica Neue", Helvetica, Arial;
3 | background-color: #eee;
4 | height: 100%;
5 | width: 100%;
6 | padding-bottom: 150px;
7 | // background-image: url('../img/geometry2.png');
8 | }
9 |
10 | html,
11 | body,
12 | input,
13 | textarea,
14 | buttons {
15 | -webkit-font-smoothing: antialiased;
16 | -moz-osx-font-smoothing: grayscale;
17 | text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
18 | }
19 |
20 | a {
21 | cursor: pointer;
22 | }
23 |
--------------------------------------------------------------------------------
/sitemap.xml:
--------------------------------------------------------------------------------
1 |
2 |
77 |
78 |
80 | awesome lists can be found by AwesomeSearch now. 81 |
82 |
84 | There are many awesome lists in the Awesome
85 | We hope to build an application to access them more quickly .
86 |
91 | Access and search every awesome repo collected in sindresorhus/awesome in one page without pain.
92 | Access an awesome repo by https://awesomelists.top/#repos/sindresorhus/awesome-nodejs.(you can bookmark your favorite!)
93 | Categories of an awesome repo is supported if that repo uses properly formatted headings.
94 | Search links in a specified repo (supports most repos) and repos listed in sindresorhus/awesome.
95 |
100 | Check out Awesome Node.js! 101 |
102 |106 | sindresorhus/awesome 107 | , all authors of awesome lists 108 |
109 |111 | Awesome search is built with by lockys, John-Lin 112 |
113 | 116 |