├── LICENSE ├── README.md ├── SayLoveWall.sql ├── back ├── act.js ├── auth.php ├── getemail.php ├── index.php ├── mange.php ├── protection.php ├── resend.php └── style.css ├── css ├── bootflat.min.css ├── bootstrap.min.css ├── homepage.css ├── images │ ├── ajax-loader.gif │ ├── icons-png │ │ ├── action-black.png │ │ ├── action-white.png │ │ ├── alert-black.png │ │ ├── alert-white.png │ │ ├── arrow-d-black.png │ │ ├── arrow-d-l-black.png │ │ ├── arrow-d-l-white.png │ │ ├── arrow-d-r-black.png │ │ ├── arrow-d-r-white.png │ │ ├── arrow-d-white.png │ │ ├── arrow-l-black.png │ │ ├── arrow-l-white.png │ │ ├── arrow-r-black.png │ │ ├── arrow-r-white.png │ │ ├── arrow-u-black.png │ │ ├── arrow-u-l-black.png │ │ ├── arrow-u-l-white.png │ │ ├── arrow-u-r-black.png │ │ ├── arrow-u-r-white.png │ │ ├── arrow-u-white.png │ │ ├── audio-black.png │ │ ├── audio-white.png │ │ ├── back-black.png │ │ ├── back-white.png │ │ ├── bars-black.png │ │ ├── bars-white.png │ │ ├── bullets-black.png │ │ ├── bullets-white.png │ │ ├── calendar-black.png │ │ ├── calendar-white.png │ │ ├── camera-black.png │ │ ├── camera-white.png │ │ ├── carat-d-black.png │ │ ├── carat-d-white.png │ │ ├── carat-l-black.png │ │ ├── carat-l-white.png │ │ ├── carat-r-black.png │ │ ├── carat-r-white.png │ │ ├── carat-u-black.png │ │ ├── carat-u-white.png │ │ ├── check-black.png │ │ ├── check-white.png │ │ ├── clock-black.png │ │ ├── clock-white.png │ │ ├── cloud-black.png │ │ ├── cloud-white.png │ │ ├── comment-black.png │ │ ├── comment-white.png │ │ ├── delete-black.png │ │ ├── delete-white.png │ │ ├── edit-black.png │ │ ├── edit-white.png │ │ ├── eye-black.png │ │ ├── eye-white.png │ │ ├── forbidden-black.png │ │ ├── forbidden-white.png │ │ ├── forward-black.png │ │ ├── forward-white.png │ │ ├── gear-black.png │ │ ├── gear-white.png │ │ ├── grid-black.png │ │ ├── grid-white.png │ │ ├── heart-black.png │ │ ├── heart-white.png │ │ ├── home-black.png │ │ ├── home-white.png │ │ ├── info-black.png │ │ ├── info-white.png │ │ ├── location-black.png │ │ ├── location-white.png │ │ ├── lock-black.png │ │ ├── lock-white.png │ │ ├── mail-black.png │ │ ├── mail-white.png │ │ ├── minus-black.png │ │ ├── minus-white.png │ │ ├── navigation-black.png │ │ ├── navigation-white.png │ │ ├── phone-black.png │ │ ├── phone-white.png │ │ ├── plus-black.png │ │ ├── plus-white.png │ │ ├── power-black.png │ │ ├── power-white.png │ │ ├── recycle-black.png │ │ ├── recycle-white.png │ │ ├── refresh-black.png │ │ ├── refresh-white.png │ │ ├── search-black.png │ │ ├── search-white.png │ │ ├── shop-black.png │ │ ├── shop-white.png │ │ ├── star-black.png │ │ ├── star-white.png │ │ ├── tag-black.png │ │ ├── tag-white.png │ │ ├── user-black.png │ │ ├── user-white.png │ │ ├── video-black.png │ │ └── video-white.png │ └── icons-svg │ │ ├── action-black.svg │ │ ├── action-white.svg │ │ ├── alert-black.svg │ │ ├── alert-white.svg │ │ ├── arrow-d-black.svg │ │ ├── arrow-d-l-black.svg │ │ ├── arrow-d-l-white.svg │ │ ├── arrow-d-r-black.svg │ │ ├── arrow-d-r-white.svg │ │ ├── arrow-d-white.svg │ │ ├── arrow-l-black.svg │ │ ├── arrow-l-white.svg │ │ ├── arrow-r-black.svg │ │ ├── arrow-r-white.svg │ │ ├── arrow-u-black.svg │ │ ├── arrow-u-l-black.svg │ │ ├── arrow-u-l-white.svg │ │ ├── arrow-u-r-black.svg │ │ ├── arrow-u-r-white.svg │ │ ├── arrow-u-white.svg │ │ ├── audio-black.svg │ │ ├── audio-white.svg │ │ ├── back-black.svg │ │ ├── back-white.svg │ │ ├── bars-black.svg │ │ ├── bars-white.svg │ │ ├── bullets-black.svg │ │ ├── bullets-white.svg │ │ ├── calendar-black.svg │ │ ├── calendar-white.svg │ │ ├── camera-black.svg │ │ ├── camera-white.svg │ │ ├── carat-d-black.svg │ │ ├── carat-d-white.svg │ │ ├── carat-l-black.svg │ │ ├── carat-l-white.svg │ │ ├── carat-r-black.svg │ │ ├── carat-r-white.svg │ │ ├── carat-u-black.svg │ │ ├── carat-u-white.svg │ │ ├── check-black.svg │ │ ├── check-white.svg │ │ ├── clock-black.svg │ │ ├── clock-white.svg │ │ ├── cloud-black.svg │ │ ├── cloud-white.svg │ │ ├── comment-black.svg │ │ ├── comment-white.svg │ │ ├── delete-black.svg │ │ ├── delete-white.svg │ │ ├── edit-black.svg │ │ ├── edit-white.svg │ │ ├── eye-black.svg │ │ ├── eye-white.svg │ │ ├── forbidden-black.svg │ │ ├── forbidden-white.svg │ │ ├── forward-black.svg │ │ ├── forward-white.svg │ │ ├── gear-black.svg │ │ ├── gear-white.svg │ │ ├── grid-black.svg │ │ ├── grid-white.svg │ │ ├── heart-black.svg │ │ ├── heart-white.svg │ │ ├── home-black.svg │ │ ├── home-white.svg │ │ ├── info-black.svg │ │ ├── info-white.svg │ │ ├── location-black.svg │ │ ├── location-white.svg │ │ ├── lock-black.svg │ │ ├── lock-white.svg │ │ ├── mail-black.svg │ │ ├── mail-white.svg │ │ ├── minus-black.svg │ │ ├── minus-white.svg │ │ ├── navigation-black.svg │ │ ├── navigation-white.svg │ │ ├── phone-black.svg │ │ ├── phone-white.svg │ │ ├── plus-black.svg │ │ ├── plus-white.svg │ │ ├── power-black.svg │ │ ├── power-white.svg │ │ ├── recycle-black.svg │ │ ├── recycle-white.svg │ │ ├── refresh-black.svg │ │ ├── refresh-white.svg │ │ ├── search-black.svg │ │ ├── search-white.svg │ │ ├── shop-black.svg │ │ ├── shop-white.svg │ │ ├── star-black.svg │ │ ├── star-white.svg │ │ ├── tag-black.svg │ │ ├── tag-white.svg │ │ ├── user-black.svg │ │ ├── user-white.svg │ │ ├── video-black.svg │ │ └── video-white.svg └── jquery.mobile-1.4.5.min.css ├── favicon.ico ├── help.html ├── images ├── background.jpg ├── header.png ├── icon │ ├── article_white.png │ ├── dianzan.png │ ├── dianzanhou.png │ ├── fenxiang.png │ ├── heart.gif │ ├── heart_white.png │ ├── help.png │ ├── help_white.png │ ├── jingcai.png │ ├── logo.png │ ├── logo2.png │ ├── pinglun.png │ ├── search_white.png │ ├── sousuo.png │ ├── to.png │ ├── upvote.png │ └── wenzhang.png ├── logo.png ├── posts_1.png ├── posts_2.png ├── posts_3.png └── title.png ├── index.php ├── js ├── bootstrap.min.js ├── display.js ├── display.min.js ├── homepage.js ├── icheck.min.js ├── jquery-1.12.4.min.js ├── jquery-3.1.1.min.js ├── jquery.mobile-1.4.5.min.js ├── search.js ├── snow.src.js └── submit.js ├── php ├── LCS.php ├── PHPMailer │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── PHPMailerAutoload.php │ ├── README.md │ ├── VERSION │ ├── changelog.md │ ├── class.phpmailer.php │ ├── class.phpmaileroauth.php │ ├── class.phpmaileroauthgoogle.php │ ├── class.pop3.php │ ├── class.smtp.php │ ├── composer.json │ ├── composer.lock │ ├── docs │ │ ├── Callback_function_notes.txt │ │ ├── DomainKeys_notes.txt │ │ ├── Note_for_SMTP_debugging.txt │ │ ├── extending.html │ │ ├── faq.html │ │ ├── generatedocs.sh │ │ └── pop3_article.txt │ ├── extras │ │ ├── EasyPeasyICS.php │ │ ├── README.md │ │ ├── htmlfilter.php │ │ └── ntlm_sasl_client.php │ ├── get_oauth_token.php │ ├── language │ │ ├── phpmailer.lang-am.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-br.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-cz.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-dk.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-no.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-se.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-zh.php │ │ └── phpmailer.lang-zh_cn.php │ ├── test │ │ ├── bootstrap.php │ │ ├── fakepopserver.sh │ │ ├── fakesendmail.sh │ │ ├── phpmailerLangTest.php │ │ ├── phpmailerTest.php │ │ ├── runfakepopserver.sh │ │ ├── test_callback.php │ │ └── testbootstrap-dist.php │ └── travis.phpunit.xml.dist ├── action.php ├── comment.php ├── connect.php ├── display.php ├── email.php ├── guessName.php ├── like.php ├── say.php └── search.php ├── saylove.html ├── search.html ├── share.php └── 文档 ├── 数据库设计 ├── saylove2017.sql ├── 数据库.jpg ├── 数据库.vsdx └── 数据库语句设计.sql ├── 活动图 ├── 发布.jpg ├── 发布.vsdx ├── 点赞.jpg ├── 猜名字.jpg └── 评论.jpg ├── 用例图 ├── 用例图.jpg └── 用例图.vsdx ├── 表白墙思维导图.png └── 设计UI ├── 1 └── 1.jpg ├── 2 ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg ├── 3 └── 1.jpg └── 湖大表白墙 ├── 01132d554b19550000009e32efbf7e.jpg@900w_1l_2o_100sh.jpg ├── 011e77554b19850000007cc2c3b6d5.jpg@900w_1l_2o_100sh.jpg ├── 012733554b19570000009e32503846.jpg@900w_1l_2o_100sh.jpg ├── 015089554b19860000007cc2db2fe8.jpg@900w_1l_2o_100sh.jpg ├── 01820a554b197f0000007cc2a61370.jpg@900w_1l_2o_100sh.jpg ├── 0189a4554b194d0000009e3257f38a.jpg@900w_1l_2o_100sh.jpg └── 01e72b554b19860000007cc2d4b63f.jpg@900w_1l_2o_100sh.jpg /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Jiaping Liang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 这是一个开源的表白墙项目,也是我的第一个开源项目。 2 | 3 | ## 起源 4 | 起初是给**广西科技大学**易班发展中心的光棍节活动开发的一个网站,活动结束后发现效果还不错,同学们的响应很热烈,而且在广西内的高校内也是好评不断。 5 | 6 | 于是,我就把此网站开源了,希望能对同学们有帮助。 7 | 8 | ## 链接 9 | https://pingxonline.com/app/saylove/ 10 | 11 | ## 主要特性 12 | - 发起表白 13 | - 查看表白 14 | - 搜索某人的表白 15 | - 点赞 16 | - 分享 17 | - 评论 18 | - 猜名字 19 | - 性别区分 20 | - 邮件通知被表白者 21 | 22 | ## 目的 23 | 脱单神器助你早日脱单。 24 | 25 | ## 快速使用 26 | 27 | 1. 数据库链接配置: 28 | 修改connect.php中的 29 | 30 | 31 | // $host = '127.0.0.1'; // 数据库地址 32 | 33 | // $user = 'root'; // 数据库用户名字 34 | 35 | // $pass = '';   // 数据库链接密码 36 | 37 | // $db_name = 'wishingwall'; // 链接的数据库名字 38 | 39 | 40 | 41 |      并把斜杠注释去掉,其他地方链接无需修改。 42 | 43 | 44 | 2. 邮件服务配置: email.php ,修改成QQ邮箱和独立密码。(需要QQ邮箱开启相关邮件服务和设置一个独立密码,使用独立密码进行登录)。此邮件服务效果并不乐观,因为QQ限制最大发邮件数量,短时间内大量邮件发送出去会被退回。建议使用第三方邮件平台,付费服务。 45 | 46 | 3. 导入数据库文件。 47 | 48 | 4. 分享链接生成:修改display.js文件第155行,此行控制生成的分享链接。 49 | 50 | 这个网站会有许许多多的BUG,欢迎大家一起来完善。 51 | 52 | ## 更新历史 53 | 54 | ## 支持 55 | 基于jQuery Mobile开发。 56 | 57 | ## 界面 58 | 59 | ![](https://pingxonline.com/wp-content/uploads/2017/08/1.png) 60 | 61 | ![](https://pingxonline.com/wp-content/uploads/2017/08/2.png) 62 | 63 | ![](https://pingxonline.com/wp-content/uploads/2017/08/3.png) 64 | -------------------------------------------------------------------------------- /back/auth.php: -------------------------------------------------------------------------------- 1 | test_input($_POST["act"]); 7 | $ip = $connectDBS->getIP(); 8 | $sql = "SELECT count(*) FROM `saylove_2017_blacklist` WHERE `ip` = '$ip'"; 9 | $res = mysqli_query($connectDBS->link, $sql); 10 | $result = mysqli_fetch_array($res); 11 | $num = $result[0]; 12 | if ($num != 0) { 13 | exit(0); 14 | } 15 | 16 | switch ($action) { 17 | case 'resend': 18 | include_once 'resend.php'; 19 | $post_id = $connectDBS->test_input($_POST["id"]); 20 | $email = $connectDBS->test_input($_POST["email"]); 21 | $reSend = new sendEmail(); 22 | $reSend->sendOut($connectDBS->link, $post_id, $email); 23 | break; 24 | case 'getemail': 25 | include 'getemail.php'; 26 | $page = $connectDBS->test_input($_POST["page"]); 27 | $getEmail = new getemail(); 28 | $getEmail->displayEmail($connectDBS->link, $page); 29 | break; 30 | case 'start': 31 | # code... 32 | include_once 'resend.php'; 33 | // include 'getemail.php'; 34 | $reSend = new sendEmail(); 35 | $mysql = "SELECT * FROM `saylove_2017_posts` WHERE `isDisplay` = '0' AND `isSended` = '0' AND email <> '' ORDER BY `mtime` DESC"; 36 | $arr_address = mysqli_query($connectDBS->link , $mysql); 37 | while ( $row = mysqli_fetch_assoc($arr_address) ){ 38 | $reSend->sendOut($connectDBS->link, $row['id'], $row['email']); 39 | sleep(30); 40 | } 41 | break; 42 | default: 43 | # code... 44 | break; 45 | } 46 | } 47 | ?> 48 | -------------------------------------------------------------------------------- /back/getemail.php: -------------------------------------------------------------------------------- 1 | maxItems; 15 | $mysql = "SELECT * FROM `saylove_2017_posts` WHERE `isDisplay` = '0' AND `isSended` = '0' AND email <> '' ORDER BY `mtime` DESC LIMIT {$page_later},{$this->maxItems}"; 16 | $arr_address = mysqli_query($link, $mysql); 17 | 18 | $this->output($arr_address,$link);//输出posts 19 | } 20 | 21 | public function output($arr_address,$link) 22 | { 23 | $arr = array(); 24 | while ( $row = mysqli_fetch_assoc($arr_address) ){ 25 | $arrSub = array(); 26 | 27 | $arrSub[] = $row['id'];; 28 | $arrSub[] = $row['nickName']; 29 | $arrSub[] = $row['toWho']; 30 | $arrSub[] = $row['contents']; 31 | $arrSub[] = $row['email']; 32 | $arrSub[] = $row['ip']; 33 | $arrSub[] = $row['mtime']; 34 | $arr[] = $arrSub; 35 | } 36 | echo json_encode($arr); 37 | } 38 | } 39 | 40 | ?> 41 | -------------------------------------------------------------------------------- /back/index.php: -------------------------------------------------------------------------------- 1 | 2 | document.getElementById(\"info\").style.display='block';document.getElementById(\"info\").innerHTML='用户名或者密码错了'; "; 21 | } 22 | } 23 | ?> 24 | 25 | 26 | 27 | 28 | 神奇的后台 29 | 30 | 31 | 32 |
33 |
34 |

后台管理

35 | 36 | 37 |
38 | 39 |
40 | 41 |
42 | 43 |
44 |
45 | 46 | 47 | -------------------------------------------------------------------------------- /back/mange.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 神奇的后台 6 | 7 | 8 |
9 | 10 | 11 |
12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /back/protection.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | 17 | 神奇的后台 18 | 19 | 20 | 21 | 22 | 23 | Log out 24 | 25 |
26 | 27 | 28 |
29 | 30 |
31 | 32 |
33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /back/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/back/style.css -------------------------------------------------------------------------------- /css/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/ajax-loader.gif -------------------------------------------------------------------------------- /css/images/icons-png/action-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/action-black.png -------------------------------------------------------------------------------- /css/images/icons-png/action-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/action-white.png -------------------------------------------------------------------------------- /css/images/icons-png/alert-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/alert-black.png -------------------------------------------------------------------------------- /css/images/icons-png/alert-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/alert-white.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-d-black.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-d-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-d-l-black.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-d-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-d-l-white.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-d-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-d-r-black.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-d-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-d-r-white.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-d-white.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-l-black.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-l-white.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-r-black.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-r-white.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-u-black.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-u-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-u-l-black.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-u-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-u-l-white.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-u-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-u-r-black.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-u-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-u-r-white.png -------------------------------------------------------------------------------- /css/images/icons-png/arrow-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/arrow-u-white.png -------------------------------------------------------------------------------- /css/images/icons-png/audio-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/audio-black.png -------------------------------------------------------------------------------- /css/images/icons-png/audio-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/audio-white.png -------------------------------------------------------------------------------- /css/images/icons-png/back-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/back-black.png -------------------------------------------------------------------------------- /css/images/icons-png/back-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/back-white.png -------------------------------------------------------------------------------- /css/images/icons-png/bars-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/bars-black.png -------------------------------------------------------------------------------- /css/images/icons-png/bars-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/bars-white.png -------------------------------------------------------------------------------- /css/images/icons-png/bullets-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/bullets-black.png -------------------------------------------------------------------------------- /css/images/icons-png/bullets-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/bullets-white.png -------------------------------------------------------------------------------- /css/images/icons-png/calendar-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/calendar-black.png -------------------------------------------------------------------------------- /css/images/icons-png/calendar-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/calendar-white.png -------------------------------------------------------------------------------- /css/images/icons-png/camera-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/camera-black.png -------------------------------------------------------------------------------- /css/images/icons-png/camera-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/camera-white.png -------------------------------------------------------------------------------- /css/images/icons-png/carat-d-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/carat-d-black.png -------------------------------------------------------------------------------- /css/images/icons-png/carat-d-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/carat-d-white.png -------------------------------------------------------------------------------- /css/images/icons-png/carat-l-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/carat-l-black.png -------------------------------------------------------------------------------- /css/images/icons-png/carat-l-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/carat-l-white.png -------------------------------------------------------------------------------- /css/images/icons-png/carat-r-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/carat-r-black.png -------------------------------------------------------------------------------- /css/images/icons-png/carat-r-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/carat-r-white.png -------------------------------------------------------------------------------- /css/images/icons-png/carat-u-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/carat-u-black.png -------------------------------------------------------------------------------- /css/images/icons-png/carat-u-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/carat-u-white.png -------------------------------------------------------------------------------- /css/images/icons-png/check-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/check-black.png -------------------------------------------------------------------------------- /css/images/icons-png/check-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/check-white.png -------------------------------------------------------------------------------- /css/images/icons-png/clock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/clock-black.png -------------------------------------------------------------------------------- /css/images/icons-png/clock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/clock-white.png -------------------------------------------------------------------------------- /css/images/icons-png/cloud-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/cloud-black.png -------------------------------------------------------------------------------- /css/images/icons-png/cloud-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/cloud-white.png -------------------------------------------------------------------------------- /css/images/icons-png/comment-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/comment-black.png -------------------------------------------------------------------------------- /css/images/icons-png/comment-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/comment-white.png -------------------------------------------------------------------------------- /css/images/icons-png/delete-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/delete-black.png -------------------------------------------------------------------------------- /css/images/icons-png/delete-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/delete-white.png -------------------------------------------------------------------------------- /css/images/icons-png/edit-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/edit-black.png -------------------------------------------------------------------------------- /css/images/icons-png/edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/edit-white.png -------------------------------------------------------------------------------- /css/images/icons-png/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/eye-black.png -------------------------------------------------------------------------------- /css/images/icons-png/eye-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/eye-white.png -------------------------------------------------------------------------------- /css/images/icons-png/forbidden-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/forbidden-black.png -------------------------------------------------------------------------------- /css/images/icons-png/forbidden-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/forbidden-white.png -------------------------------------------------------------------------------- /css/images/icons-png/forward-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/forward-black.png -------------------------------------------------------------------------------- /css/images/icons-png/forward-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/forward-white.png -------------------------------------------------------------------------------- /css/images/icons-png/gear-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/gear-black.png -------------------------------------------------------------------------------- /css/images/icons-png/gear-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/gear-white.png -------------------------------------------------------------------------------- /css/images/icons-png/grid-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/grid-black.png -------------------------------------------------------------------------------- /css/images/icons-png/grid-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/grid-white.png -------------------------------------------------------------------------------- /css/images/icons-png/heart-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/heart-black.png -------------------------------------------------------------------------------- /css/images/icons-png/heart-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/heart-white.png -------------------------------------------------------------------------------- /css/images/icons-png/home-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/home-black.png -------------------------------------------------------------------------------- /css/images/icons-png/home-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/home-white.png -------------------------------------------------------------------------------- /css/images/icons-png/info-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/info-black.png -------------------------------------------------------------------------------- /css/images/icons-png/info-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/info-white.png -------------------------------------------------------------------------------- /css/images/icons-png/location-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/location-black.png -------------------------------------------------------------------------------- /css/images/icons-png/location-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/location-white.png -------------------------------------------------------------------------------- /css/images/icons-png/lock-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/lock-black.png -------------------------------------------------------------------------------- /css/images/icons-png/lock-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/lock-white.png -------------------------------------------------------------------------------- /css/images/icons-png/mail-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/mail-black.png -------------------------------------------------------------------------------- /css/images/icons-png/mail-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/mail-white.png -------------------------------------------------------------------------------- /css/images/icons-png/minus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/minus-black.png -------------------------------------------------------------------------------- /css/images/icons-png/minus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/minus-white.png -------------------------------------------------------------------------------- /css/images/icons-png/navigation-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/navigation-black.png -------------------------------------------------------------------------------- /css/images/icons-png/navigation-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/navigation-white.png -------------------------------------------------------------------------------- /css/images/icons-png/phone-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/phone-black.png -------------------------------------------------------------------------------- /css/images/icons-png/phone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/phone-white.png -------------------------------------------------------------------------------- /css/images/icons-png/plus-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/plus-black.png -------------------------------------------------------------------------------- /css/images/icons-png/plus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/plus-white.png -------------------------------------------------------------------------------- /css/images/icons-png/power-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/power-black.png -------------------------------------------------------------------------------- /css/images/icons-png/power-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/power-white.png -------------------------------------------------------------------------------- /css/images/icons-png/recycle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/recycle-black.png -------------------------------------------------------------------------------- /css/images/icons-png/recycle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/recycle-white.png -------------------------------------------------------------------------------- /css/images/icons-png/refresh-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/refresh-black.png -------------------------------------------------------------------------------- /css/images/icons-png/refresh-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/refresh-white.png -------------------------------------------------------------------------------- /css/images/icons-png/search-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/search-black.png -------------------------------------------------------------------------------- /css/images/icons-png/search-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/search-white.png -------------------------------------------------------------------------------- /css/images/icons-png/shop-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/shop-black.png -------------------------------------------------------------------------------- /css/images/icons-png/shop-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/shop-white.png -------------------------------------------------------------------------------- /css/images/icons-png/star-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/star-black.png -------------------------------------------------------------------------------- /css/images/icons-png/star-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/star-white.png -------------------------------------------------------------------------------- /css/images/icons-png/tag-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/tag-black.png -------------------------------------------------------------------------------- /css/images/icons-png/tag-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/tag-white.png -------------------------------------------------------------------------------- /css/images/icons-png/user-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/user-black.png -------------------------------------------------------------------------------- /css/images/icons-png/user-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/user-white.png -------------------------------------------------------------------------------- /css/images/icons-png/video-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/video-black.png -------------------------------------------------------------------------------- /css/images/icons-png/video-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/css/images/icons-png/video-white.png -------------------------------------------------------------------------------- /css/images/icons-svg/action-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/action-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/alert-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/alert-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-d-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-d-l-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-d-l-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-d-r-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-d-r-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-d-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-l-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-l-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-r-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-r-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-u-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-u-l-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-u-l-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-u-r-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-u-r-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/arrow-u-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/audio-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/audio-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/back-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/back-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/bars-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/bars-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/bullets-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /css/images/icons-svg/bullets-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /css/images/icons-svg/calendar-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/calendar-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/camera-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/camera-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /css/images/icons-svg/carat-d-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/carat-d-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/carat-l-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/carat-l-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/carat-r-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/carat-r-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/carat-u-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/carat-u-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/check-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/check-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/clock-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/clock-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/cloud-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/cloud-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/comment-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/comment-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/delete-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/delete-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/edit-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/edit-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/eye-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/eye-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/forbidden-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/forbidden-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/forward-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/forward-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/grid-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /css/images/icons-svg/grid-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /css/images/icons-svg/heart-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/heart-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/home-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/home-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/info-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/info-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/location-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/location-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/lock-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/lock-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/mail-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/mail-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/minus-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/minus-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/navigation-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/navigation-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/phone-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /css/images/icons-svg/phone-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /css/images/icons-svg/plus-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/plus-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/power-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /css/images/icons-svg/power-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /css/images/icons-svg/recycle-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /css/images/icons-svg/recycle-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/refresh-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/refresh-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/search-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/search-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/shop-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/shop-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /css/images/icons-svg/star-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/star-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/tag-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/tag-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/user-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/user-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 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 | -------------------------------------------------------------------------------- /css/images/icons-svg/video-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /css/images/icons-svg/video-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/favicon.ico -------------------------------------------------------------------------------- /images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/background.jpg -------------------------------------------------------------------------------- /images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/header.png -------------------------------------------------------------------------------- /images/icon/article_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/article_white.png -------------------------------------------------------------------------------- /images/icon/dianzan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/dianzan.png -------------------------------------------------------------------------------- /images/icon/dianzanhou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/dianzanhou.png -------------------------------------------------------------------------------- /images/icon/fenxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/fenxiang.png -------------------------------------------------------------------------------- /images/icon/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/heart.gif -------------------------------------------------------------------------------- /images/icon/heart_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/heart_white.png -------------------------------------------------------------------------------- /images/icon/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/help.png -------------------------------------------------------------------------------- /images/icon/help_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/help_white.png -------------------------------------------------------------------------------- /images/icon/jingcai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/jingcai.png -------------------------------------------------------------------------------- /images/icon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/logo.png -------------------------------------------------------------------------------- /images/icon/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/logo2.png -------------------------------------------------------------------------------- /images/icon/pinglun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/pinglun.png -------------------------------------------------------------------------------- /images/icon/search_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/search_white.png -------------------------------------------------------------------------------- /images/icon/sousuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/sousuo.png -------------------------------------------------------------------------------- /images/icon/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/to.png -------------------------------------------------------------------------------- /images/icon/upvote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/upvote.png -------------------------------------------------------------------------------- /images/icon/wenzhang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/icon/wenzhang.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/logo.png -------------------------------------------------------------------------------- /images/posts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/posts_1.png -------------------------------------------------------------------------------- /images/posts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/posts_2.png -------------------------------------------------------------------------------- /images/posts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/posts_3.png -------------------------------------------------------------------------------- /images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refineidea/saylove-wall/98ffe41cd72b75012e9f47b7eb301f2054488c96/images/title.png -------------------------------------------------------------------------------- /js/homepage.js: -------------------------------------------------------------------------------- 1 | new Vue ({ 2 | el:'#app', 3 | data: { 4 | message: "Hello Vue.js!" 5 | } 6 | }) 7 | -------------------------------------------------------------------------------- /php/LCS.php: -------------------------------------------------------------------------------- 1 | str1 = $str1; 10 | $this->str2 = $str2; 11 | if ($len1 == 0) $len1 = strlen($str1); 12 | if ($len2 == 0) $len2 = strlen($str2); 13 | $this->initC($len1, $len2); 14 | return $this->printLCS($this->c, $len1 - 1, $len2 - 1); 15 | } 16 | /*返回两个串的相似度 17 | */ 18 | function getSimilar($str1, $str2) { 19 | $len1 = strlen($str1); 20 | $len2 = strlen($str2); 21 | $len = strlen($this->getLCS($str1, $str2, $len1, $len2)); 22 | return $len * 2 / ($len1 + $len2); 23 | } 24 | function initC($len1, $len2) { 25 | for ($i = 0; $i < $len1; $i++) $this->c[$i][0] = 0; 26 | for ($j = 0; $j < $len2; $j++) $this->c[0][$j] = 0; 27 | for ($i = 1; $i < $len1; $i++) { 28 | for ($j = 1; $j < $len2; $j++) { 29 | if ($this->str1[$i] == $this->str2[$j]) { 30 | $this->c[$i][$j] = $this->c[$i - 1][$j - 1] + 1; 31 | } else if ($this->c[$i - 1][$j] >= $this->c[$i][$j - 1]) { 32 | $this->c[$i][$j] = $this->c[$i - 1][$j]; 33 | } else { 34 | $this->c[$i][$j] = $this->c[$i][$j - 1]; 35 | } 36 | } 37 | } 38 | } 39 | function printLCS($c, $i, $j) { 40 | if ($i == 0 || $j == 0) { 41 | if ($this->str1[$i] == $this->str2[$j]) return $this->str2[$j]; 42 | else return ""; 43 | } 44 | if ($this->str1[$i] == $this->str2[$j]) { 45 | return $this->printLCS($this->c, $i - 1, $j - 1).$this->str2[$j]; 46 | } else if ($this->c[$i - 1][$j] >= $this->c[$i][$j - 1]) { 47 | return $this->printLCS($this->c, $i - 1, $j); 48 | } else { 49 | return $this->printLCS($this->c, $i, $j - 1); 50 | } 51 | } 52 | } 53 | ?> 54 | -------------------------------------------------------------------------------- /php/PHPMailer/.gitignore: -------------------------------------------------------------------------------- 1 | docs/phpdoc/ 2 | test/message.txt 3 | test/testbootstrap.php 4 | test/*.pem 5 | .idea 6 | build/ 7 | vendor/ 8 | -------------------------------------------------------------------------------- /php/PHPMailer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 7.0 4 | - 5.6 5 | - 5.5 6 | - 5.4 7 | - 5.3 8 | - hhvm 9 | 10 | matrix: 11 | allow_failures: 12 | - php: hhvm 13 | 14 | before_install: 15 | - sudo apt-get update -qq 16 | - sudo apt-get install -y -qq postfix 17 | before_script: 18 | - sudo service postfix stop 19 | - smtp-sink -d "%d.%H.%M.%S" localhost:2500 1000 & 20 | - mkdir -p build/logs 21 | - cd test 22 | - cp testbootstrap-dist.php testbootstrap.php 23 | - chmod +x fakesendmail.sh 24 | - sudo mkdir -p /var/qmail/bin 25 | - sudo cp fakesendmail.sh /var/qmail/bin/sendmail 26 | - sudo cp fakesendmail.sh /usr/sbin/sendmail 27 | - echo 'sendmail_path = "/usr/sbin/sendmail -t -i "' > $(php --ini|grep -m 1 "ini files in:"|cut -d ":" -f 2)/sendmail.ini 28 | script: 29 | - phpunit --configuration ../travis.phpunit.xml.dist 30 | after_script: 31 | - wget https://scrutinizer-ci.com/ocular.phar 32 | - php ocular.phar code-coverage:upload --format=php-clover ../build/logs/clover.xml 33 | -------------------------------------------------------------------------------- /php/PHPMailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.14 -------------------------------------------------------------------------------- /php/PHPMailer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpmailer/phpmailer", 3 | "type": "library", 4 | "description": "PHPMailer is a full-featured email creation and transfer class for PHP", 5 | "authors": [ 6 | { 7 | "name": "Marcus Bointon", 8 | "email": "phpmailer@synchromedia.co.uk" 9 | }, 10 | { 11 | "name": "Jim Jagielski", 12 | "email": "jimjag@gmail.com" 13 | }, 14 | { 15 | "name": "Andy Prevost", 16 | "email": "codeworxtech@users.sourceforge.net" 17 | }, 18 | { 19 | "name": "Brent R. Matzelle" 20 | } 21 | ], 22 | "require": { 23 | "php": ">=5.0.0" 24 | }, 25 | "require-dev": { 26 | "phpdocumentor/phpdocumentor": "*", 27 | "phpunit/phpunit": "4.7.*" 28 | }, 29 | "suggest": { 30 | "league/oauth2-client": "Needed for XOAUTH2 authentication", 31 | "league/oauth2-google": "Needed for Gmail XOAUTH2" 32 | }, 33 | "autoload": { 34 | "classmap": [ 35 | "class.phpmailer.php", 36 | "class.phpmaileroauth.php", 37 | "class.phpmaileroauthgoogle.php", 38 | "class.smtp.php", 39 | "class.pop3.php", 40 | "extras/EasyPeasyICS.php", 41 | "extras/ntlm_sasl_client.php" 42 | ] 43 | }, 44 | "license": "LGPL-2.1" 45 | } 46 | -------------------------------------------------------------------------------- /php/PHPMailer/docs/Callback_function_notes.txt: -------------------------------------------------------------------------------- 1 | NEW CALLBACK FUNCTION: 2 | ====================== 3 | 4 | We have had requests for a method to process the results of sending emails 5 | through PHPMailer. In this new release, we have implemented a callback 6 | function that passes the results of each email sent (to, cc, and/or bcc). 7 | We have provided an example that echos the results back to the screen. The 8 | callback function can be used for any purpose. With minor modifications, the 9 | callback function can be used to create CSV logs, post results to databases, 10 | etc. 11 | 12 | Please review the test.php script for the example. 13 | 14 | It's pretty straight forward. 15 | 16 | Enjoy! 17 | Andy 18 | -------------------------------------------------------------------------------- /php/PHPMailer/docs/Note_for_SMTP_debugging.txt: -------------------------------------------------------------------------------- 1 | If you are having problems connecting or sending emails through your SMTP server, the SMTP class can provide more information about the processing/errors taking place. 2 | Use the debug functionality of the class to see what's going on in your connections. To do that, set the debug level in your script. For example: 3 | 4 | $mail->SMTPDebug = 1; 5 | $mail->isSMTP(); // telling the class to use SMTP 6 | $mail->SMTPAuth = true; // enable SMTP authentication 7 | $mail->Port = 26; // set the SMTP port 8 | $mail->Host = "mail.yourhost.com"; // SMTP server 9 | $mail->Username = "name@yourhost.com"; // SMTP account username 10 | $mail->Password = "your password"; // SMTP account password 11 | 12 | Notes on this: 13 | $mail->SMTPDebug = 0; ... will disable debugging (you can also leave this out completely, 0 is the default) 14 | $mail->SMTPDebug = 1; ... will echo errors and server responses 15 | $mail->SMTPDebug = 2; ... will echo errors, server responses and client messages 16 | 17 | And finally, don't forget to disable debugging before going into production. 18 | -------------------------------------------------------------------------------- /php/PHPMailer/docs/faq.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | PHPMailer FAQ 4 | 5 | 6 |

PHPMailer FAQ

7 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /php/PHPMailer/docs/generatedocs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Regenerate PHPMailer documentation 3 | # Run from within the docs folder 4 | rm -rf phpdoc/* 5 | phpdoc --directory .. --target ./phpdoc --ignore test/,examples/,extras/,test_script/,vendor/,language/ --sourcecode --force --title PHPMailer --template="clean" 6 | # You can merge regenerated docs into a separate docs working copy without messing up the git status like so: 7 | # rsync -a --delete --exclude ".git" --exclude "phpdoc-cache-*/" --exclude "README.md" phpdoc/ ../../phpmailer-docs 8 | # After updating docs, push/PR them to the phpmailer gh-pages branch: https://github.com/PHPMailer/PHPMailer/tree/gh-pages 9 | -------------------------------------------------------------------------------- /php/PHPMailer/extras/README.md: -------------------------------------------------------------------------------- 1 | #PHPMailer Extras 2 | 3 | These classes provide optional additional functions to PHPMailer. 4 | 5 | These are not loaded by the PHPMailer autoloader, so in some cases you may need to `require` them yourself before using them. 6 | 7 | ##EasyPeasyICS 8 | 9 | This class was originally written by Manuel Reinhard and provides a simple means of generating ICS/vCal files that are used in sending calendar events. PHPMailer does not use it directly, but you can use it to generate content appropriate for placing in the `Ical` property of PHPMailer. The PHPMailer project is now its official home as Manuel has given permission for that and is no longer maintaining it himself. 10 | 11 | ##htmlfilter 12 | 13 | This class by Konstantin Riabitsev and Jim Jagielski implements HTML filtering to remove potentially malicious tags, such as `