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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
| xmlns:components="clr-namespace:AsyncButtonApp.Components" | |
| xmlns:vm="clr-namespace:AsyncButtonApp.ViewModels" | |
| x:Class="AsyncButtonApp.Views.MainPage" | |
| Title="Main Page"> | |
| <ContentPage.BindingContext> | |
| <vm:MainPageViewModel /> | |
| </ContentPage.BindingContext> |
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
| using System; | |
| using System.Diagnostics; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| namespace test | |
| { | |
| class Person | |
| { | |
| public int Number { get; set; } |
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
| {%- assign posts = collections.post | reverse -%} | |
| {% for post in posts %} | |
| <span class="badge secondary">{{ post.date | post.date: '%Y-%m-%d' }}</span> [{{ post.data.title }}]({{ post.url }}) | |
| {% endfor %} |
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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/paper.min.css"> | |
| <title>{{ title }}</title> | |
| </head> | |
| <body> |
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
| rules: [ | |
| { | |
| test: /\.(css|scss)$/, | |
| use: [ | |
| 'style-loader', | |
| { | |
| loader: 'css-loader', | |
| options: { | |
| importLoaders: 1, | |
| modules: { |
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
| .logo { | |
| width: 100px; | |
| height: 30px; | |
| background: green; | |
| margin: 16px 28px 16px 0; | |
| float: left; | |
| } |
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
| .logo { | |
| width: 100px; | |
| height: 30px; | |
| background: red; | |
| margin: 16px 28px 16px 0; | |
| float: left; | |
| } |
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
| const express = require('express'); | |
| const path = require("path"); | |
| const app = express(); | |
| const webpack = require('webpack'); | |
| const webpackMiddleware = require('webpack-dev-middleware'); | |
| const webpackConfig = require('./webpack.config.js'); | |
| app.use(webpackMiddleware(webpack(webpackConfig))); |