Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1836 | Rev 2524 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1836 Rev 2275
Línea 42... Línea 42...
42
                )
42
                )
43
              }
43
              }
44
            </a>
44
            </a>
45
          </div>
45
          </div>
46
        </div>
46
        </div>
-
 
47
        <hr />
-
 
48
        {
-
 
49
          ((!company_name && typeof common_connection === 'number') || !!followers || !!views) && (
-
 
50
            <div className="d-flex">
-
 
51
              <ul className="d-flex" style={{ gap: '30px' }}>
-
 
52
                <li>
-
 
53
                  {
-
 
54
                    !company_name && typeof common_connection === 'number' && (
-
 
55
                      <p className="com text-gray">
-
 
56
                        <i
-
 
57
                          className="fas fa-share-alt"
-
 
58
                        />
-
 
59
                        <small className="ml-2">
-
 
60
                          {common_connection} comunes
-
 
61
                        </small>
-
 
62
                      </p>
-
 
63
                    )
-
 
64
                  }
-
 
65
                </li>
-
 
66
                <li>
-
 
67
                  {
-
 
68
                    !!followers && (
-
 
69
                      <p className="com text-gray">
-
 
70
                        <i className="fas fa-users"></i>
-
 
71
                        <small className="ml-2">
-
 
72
                          {followers}
-
 
73
                        </small>
-
 
74
                      </p>
-
 
75
                    )
-
 
76
                  }
-
 
77
                  {
-
 
78
                    views && (
-
 
79
                      <p className="com text-gray">
-
 
80
                        <i className="fas fa-eye"></i>
-
 
81
                        <small className="ml-2">
-
 
82
                          {views}
-
 
83
                        </small>
-
 
84
                      </p>
-
 
85
                    )
-
 
86
                  }
-
 
87
                </li>
-
 
88
              </ul>
-
 
89
            </div>
-
 
90
          )
-
 
91
        }
47
      </div>
92
      </div>
48
      {
93
      {
49
        (!!industry ||!!description || !!skills.length) && (
94
        (!!industry || !!description || !!skills.length) && (
50
          <div className="job_descp">
95
          <div className="job_descp">
51
            {industry && (
96
            {industry && (
52
              <ul className="job-dt ">
97
              <ul className="job-dt ">
53
                <li>
98
                <li>
54
                  <a href="#" title="" className="btn btn-primary">
99
                  <a href="#" title="" className="btn btn-primary">
Línea 64... Línea 109...
64
                  {description && parse(description)}
109
                  {description && parse(description)}
65
                </div>
110
                </div>
66
              )
111
              )
67
            }
112
            }
Línea 68... Línea 113...
68
 
113
 
69
          {
114
            {
70
            skills && (
115
              skills && (
71
              <ul className="skill-tags">
116
                <ul className="skill-tags">
72
                {
117
                  {
73
                  Object.values(skills).map((skill, id) => (
118
                    Object.values(skills).map((skill, id) => (
74
                    <li key={id}>
119
                      <li key={id}>
75
                      <a href="#" title={skill} className="btn btn-primary" >
120
                        <a href="#" title={skill} className="btn btn-primary" >
76
                        {skill}
121
                          {skill}
77
                      </a>
122
                        </a>
78
                    </li>
123
                      </li>
79
                  ))
124
                    ))
80
                }
125
                  }
81
              </ul>
126
                </ul>
82
            )
127
              )
83
          }
-
 
84
          </div>
-
 
85
        )
-
 
86
      }
-
 
87
      {
-
 
88
        ((!company_name && typeof common_connection === 'number') || !!followers || !!views) && (
-
 
89
          <div className="job-status-bar">
-
 
90
            <ul className="like-com">
-
 
91
              <li>
-
 
92
                {
-
 
93
                  !company_name && typeof common_connection === 'number' && (
-
 
94
                    <p className="com text-gray">
-
 
95
                      <i
-
 
96
                        className="fas fa-share-alt"
-
 
97
                      />
-
 
98
                      <small className="ml-2">
-
 
99
                        {common_connection} comunes
-
 
100
                      </small>
-
 
101
                    </p>
-
 
102
                  )
-
 
103
                }
-
 
104
              </li>
-
 
105
              <li>
-
 
106
                {
-
 
107
                  !!followers && (
-
 
108
                    <p className="com text-gray">
-
 
109
                      <i className="fas fa-users"></i>
-
 
110
                      <small className="ml-2">
-
 
111
                        {followers}
-
 
112
                      </small>
-
 
113
                    </p>
-
 
114
                  )
-
 
115
                }
-
 
116
                {
-
 
117
                  views && (
-
 
118
                    <p className="com text-gray">
-
 
119
                      <i className="fas fa-eye"></i>
-
 
120
                      <small className="ml-2">
-
 
121
                        {views}
-
 
122
                      </small>
-
 
123
                    </p>
-
 
124
                  )
-
 
125
                }
-
 
126
              </li>
-
 
127
            </ul>
128
            }
128
          </div>
129
          </div>
129
        )
130
        )
130
      }
131
      }
131
    </div>
132
    </div>