• This project
    • Loading...
  • Sign in

MotherProject / myYoutube

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • myYoutube
  • views
  • search.pug
  • Flare-k's avatar
    Add mixin and Modify Join&Login · c50f69df
    c50f69df
    Flare-k authored 2020-05-22 17:55:21 +0900
search.pug 323 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
extends layouts/main
include mixins/videoBlock

block content
    .search__header
        h3 Searching for: #{searchingBy}
    .search__videos
        each item in videos
            +videoBlock({
                title : item.title,
                views: item.views,
                videoFile:item.videoFile
            })