This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="modal fade" id="teamModel1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> | |
| <div class="modal-dialog"> | |
| <div class="modal-content"> | |
| <button type="button" class="close" data-dismiss="modal" aria-label="Close"> | |
| <span aria-hidden="true">×</span> | |
| </button> | |
| <img class="display" src="http://placehold.it/700x370" alt=""> | |
| <div class="row"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="mobile-navigation" class="hidden-sm hidden-md hidden-lg"> | |
| <div class="inner"> | |
| <ul class="text-uppercase"> | |
| <li><a <?php if ($currentPage == "homepage") { echo "class='active'"; } ?> href="index.php">Welcome</a></li> | |
| <li><a <?php if ($currentPage == "team") { echo "class='active'"; } ?> href="the-team.php">About Us</a></li> | |
| <li><a href="https://itunes.apple.com/gb/app/find-a-player/id662978301" target="_blank">Free App Download - IOS</a></li> | |
| <li><a href="https://play.google.com/store/apps/details?id=com.findaplayer.letsplay" target="_blank">Free App Download - Android</a></li> | |
| <li><a <?php if ($currentPage == "contact") { echo "class='active'"; } ?> href="contact.php">Get In Touch</a></li> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php $pageTitle = "Meet The Team"; $currentPage = "team"; include 'shared/html.php'; ?> | |
| <body> | |
| <?php include 'shared/header.php'; ?> | |
| <div id="teamLanding"> | |
| <div class="container"> | |
| <div class="headline"> | |
| <h1 class="">The <span>Team</span></h1> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def install | |
| (buildpath/"gtest").install resource("gtest") | |
| cd "gtest" do | |
| system "cmake", ".", *std_cmake_args | |
| system "make" | |
| end | |
| system "cmake", "cpp", *std_cmake_args | |
| system "make", "install" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt | |
| index 3539b94..9a1def9 100644 | |
| --- a/cpp/CMakeLists.txt | |
| +++ b/cpp/CMakeLists.txt | |
| @@ -415,7 +415,7 @@ if (${BUILD_GEOCODER} STREQUAL "ON") | |
| # Note that the subset of base/ on which the geocoder relies is implemented | |
| # on top of Boost header-only libraries (e.g. scoped_ptr.hpp). | |
| target_link_libraries (geocoding ${LIBRARY_DEPS}) | |
| - target_link_libraries (geocoding-shared ${LIBRARY_DEPS}) | |
| + target_link_libraries (geocoding-shared phonenumber-shared ${LIBRARY_DEPS}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| LIB_PHONE_NUMBER_REPO=https://github.com/googlei18n/libphonenumber.git | |
| LIB_PHONE_NUMBER_REV=master | |
| function log() | |
| { | |
| echo " -> $1" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "header": { | |
| "Author": "HaaTa (Jacob Alexander) 2015", | |
| "Base": "Blank", | |
| "Date": "2015-09-12", | |
| "Generator": "KIICONF 0.2", | |
| "KLL": "0.3c", | |
| "Layout": "Default", | |
| "Name": "MDErgo1", | |
| "Version": "0.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "contacts" : [ | |
| { | |
| "name" : "A Android Test Account ", | |
| "phone_numbers" : [ | |
| ], | |
| "importance_score" : 10 | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule Api.Repo.Migrations.DeviseCreateSessions do | |
| use Ecto.Migration | |
| def change | |
| create table(:sessions)) do | |
| add :email, :string | |
| add :encrypted_password, :string | |
| add :reset_password_token, :string | |
| add :reset_password_sent_at, :datetime | |
| add :remember_created_at, :datetime | |
| add :sign_in_count, :integer |