Skip to content

convoo/social-links

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Social-Links

social-links

Simple way to add links to social networks with their logos.


Install

bower install convoo/social-links --save

<social-link>

You can import and use <social-link> and then enter the network you want to use. Or you can import the specific network's link only and use that.

In some cases, you may want to pass the network name as a variable - that's why we built <social-link>.

<social-link network="twitter" href="https://www.twitter.com/@bkawk" height="15px" color="grey"></social-link>
<twitter-link href="https://www.twitter.com/@bkawk" height="15px" color="grey"></twitter-link>

Currently available networks are:

  • behance
  • convoo
  • dribbble
  • email
  • facebook
  • github
  • instagram
  • linkedin
  • pinterest
  • skype
  • snapchat
  • twitter
  • vimeo
  • youtube
<twitter-link href="https://www.twitter.com/@bkawk" height="15px"></twitter-link>
<vimeo-link href="https://www.vimeo.com/@bkawk" height="15px"></vimeo-link>
<skype-link href="https://www.skype.com/@bkawk" height="15px"></skype-link>
<youtube-link href="https://www.youtube.com/@bkawk" height="15px"></youtube-link>
<linkedin-link href="https://www.linkedin.com/@bkawk" height="15px"></linkedin-link>
<behance-link href="https://www.behance.com/@bkawk" height="15px"></behance-link>
<pinterest-link href="https://www.pinterest.com/@bkawk" height="15px"></pinterest-link>
<facebook-link href="https://www.facebook.com/@bkawk" height="15px"></facebook-link>
<convoo-link href="https://www.convoo.me/@bkawk" height="15px"></convoo-link>
<snapchat-link href="https://www.snapchat.com/@bkawk" height="15px"></snapchat-link>
<github-link href="https://www.github.com/@bkawk" height="15px"></github-link>
<instagram-link href="https://www.instagram.com/@bkawk" height="15px"></instagram-link>
<dribbble-link href="https://www.dribbble.com/@bkawk" height="15px"></dribbble-link>

Contributing

Install the Polymer-CLI

First, make sure you have the Polymer CLI installed. Then run polymer serve to serve your application locally.

Viewing Your Application

$ polymer serve

Building Your Application

$ polymer build

This will create a build/ folder with bundled/ and unbundled/ sub-folders containing a bundled (Vulcanized) and unbundled builds, both run through HTML, CSS, and JS optimizers.

You can serve the built versions by giving polymer serve a folder to serve from:

$ polymer serve build/bundled

Running Tests

$ polymer test

Your application is already set up to be tested via web-component-tester. Run polymer test to run your application's test suite locally.